10 lines
120 B
C++
10 lines
120 B
C++
#include <uv.h>
|
|
|
|
extern "C" {
|
|
|
|
int uv_tcp_get_io_watcher_fd (uv_tcp_t* handle) {
|
|
return handle->io_watcher.fd;
|
|
}
|
|
|
|
}
|