Searched refs:on_new_connection (Results 1 – 6 of 6) sorted by relevance
/libuv/docs/code/cgi/ |
H A D | main.c | 50 void on_new_connection(uv_stream_t *server, int status) { in on_new_connection() function 75 int r = uv_listen((uv_stream_t*) &server, 128, on_new_connection); in main()
|
/libuv/docs/code/multi-echo-server/ |
H A D | worker.c | 51 void on_new_connection(uv_stream_t *q, ssize_t nread, const uv_buf_t *buf) { in on_new_connection() function 86 uv_read_start((uv_stream_t*)&queue, alloc_buffer, on_new_connection); in main()
|
H A D | main.c | 31 void on_new_connection(uv_stream_t *server, int status) { in on_new_connection() function 109 if ((r = uv_listen((uv_stream_t*) &server, 128, on_new_connection))) { in main()
|
/libuv/docs/code/pipe-echo-server/ |
H A D | main.c | 54 void on_new_connection(uv_stream_t *server, int status) { in on_new_connection() function 89 if ((r = uv_listen((uv_stream_t*) &server, 128, on_new_connection))) { in main()
|
/libuv/docs/code/tcp-echo-server/ |
H A D | main.c | 55 void on_new_connection(uv_stream_t *server, int status) { in on_new_connection() function 81 int r = uv_listen((uv_stream_t*) &server, DEFAULT_BACKLOG, on_new_connection); in main()
|
/libuv/docs/src/guide/ |
H A D | processes.rst | 401 It is in ``on_new_connection`` (the TCP infrastructure is initialized in
|
Completed in 14 milliseconds