|
static void CALLBACK | post_completion (void *context, BOOLEAN timed_out) |
|
static void CALLBACK | post_write_completion (void *context, BOOLEAN timed_out) |
|
int | uv__tcp_bind (uv_tcp_t *handle, const struct sockaddr *addr, unsigned int addrlen, unsigned int flags) |
|
int | uv__tcp_connect (uv_connect_t *req, uv_tcp_t *handle, const struct sockaddr *addr, unsigned int addrlen, uv_connect_cb cb) |
|
static int | uv__tcp_keepalive (uv_tcp_t *handle, SOCKET socket, int enable, unsigned int delay) |
|
static int | uv__tcp_nodelay (uv_tcp_t *handle, SOCKET socket, int enable) |
|
int | uv__tcp_try_write (uv_tcp_t *handle, const uv_buf_t bufs[], unsigned int nbufs) |
|
int | uv__tcp_xfer_export (uv_tcp_t *handle, int target_pid, uv__ipc_socket_xfer_type_t *xfer_type, uv__ipc_socket_xfer_info_t *xfer_info) |
|
int | uv__tcp_xfer_import (uv_tcp_t *tcp, uv__ipc_socket_xfer_type_t xfer_type, uv__ipc_socket_xfer_info_t *xfer_info) |
|
void | uv_process_tcp_accept_req (uv_loop_t *loop, uv_tcp_t *handle, uv_req_t *raw_req) |
|
void | uv_process_tcp_connect_req (uv_loop_t *loop, uv_tcp_t *handle, uv_connect_t *req) |
|
void | uv_process_tcp_read_req (uv_loop_t *loop, uv_tcp_t *handle, uv_req_t *req) |
|
void | uv_process_tcp_write_req (uv_loop_t *loop, uv_tcp_t *handle, uv_write_t *req) |
|
int | uv_tcp_accept (uv_tcp_t *server, uv_tcp_t *client) |
|
void | uv_tcp_close (uv_loop_t *loop, uv_tcp_t *tcp) |
|
int | uv_tcp_close_reset (uv_tcp_t *handle, uv_close_cb close_cb) |
|
void | uv_tcp_endgame (uv_loop_t *loop, uv_tcp_t *handle) |
|
int | uv_tcp_getpeername (const uv_tcp_t *handle, struct sockaddr *name, int *namelen) |
|
int | uv_tcp_getsockname (const uv_tcp_t *handle, struct sockaddr *name, int *namelen) |
|
int | uv_tcp_init (uv_loop_t *loop, uv_tcp_t *handle) |
|
int | uv_tcp_init_ex (uv_loop_t *loop, uv_tcp_t *handle, unsigned int flags) |
|
int | uv_tcp_keepalive (uv_tcp_t *handle, int enable, unsigned int delay) |
|
int | uv_tcp_listen (uv_tcp_t *handle, int backlog, uv_connection_cb cb) |
|
int | uv_tcp_nodelay (uv_tcp_t *handle, int enable) |
|
int | uv_tcp_open (uv_tcp_t *handle, uv_os_sock_t sock) |
|
static void | uv_tcp_queue_accept (uv_tcp_t *handle, uv_tcp_accept_t *req) |
|
static void | uv_tcp_queue_read (uv_loop_t *loop, uv_tcp_t *handle) |
|
int | uv_tcp_read_start (uv_tcp_t *handle, uv_alloc_cb alloc_cb, uv_read_cb read_cb) |
|
static int | uv_tcp_set_socket (uv_loop_t *loop, uv_tcp_t *handle, SOCKET socket, int family, int imported) |
|
int | uv_tcp_simultaneous_accepts (uv_tcp_t *handle, int enable) |
|
static int | uv_tcp_try_bind (uv_tcp_t *handle, const struct sockaddr *addr, unsigned int addrlen, unsigned int flags) |
|
static int | uv_tcp_try_cancel_io (uv_tcp_t *tcp) |
|
static int | uv_tcp_try_connect (uv_connect_t *req, uv_tcp_t *handle, const struct sockaddr *addr, unsigned int addrlen, uv_connect_cb cb) |
|
int | uv_tcp_write (uv_loop_t *loop, uv_write_t *req, uv_tcp_t *handle, const uv_buf_t bufs[], unsigned int nbufs, uv_write_cb cb) |
|