Searched refs:connection (Results 1 – 12 of 12) sorted by relevance
/libuv/test/ |
H A D | test-tcp-close-after-read-timeout.c | 26 static uv_tcp_t connection; variable 105 ASSERT_OK(uv_accept(server, (uv_stream_t*) &connection)); in on_connection() 107 r = uv_read_start((uv_stream_t*) &connection, in on_connection() 116 handle == (uv_handle_t*) &connection || in on_close() 166 r = uv_tcp_init(loop, &connection); in TEST_IMPL()
|
H A D | test-tcp-read-stop-start.c | 26 static uv_tcp_t connection; variable 91 ASSERT_OK(uv_tcp_init(server->loop, &connection)); in on_connection() 93 ASSERT_OK(uv_accept(server, (uv_stream_t* )&connection)); in on_connection() 95 ASSERT_OK(uv_read_start((uv_stream_t*)&connection, on_alloc, on_read1)); in on_connection()
|
/libuv/docs/src/ |
H A D | stream.rst | 63 Callback called after a connection started by :c:func:`uv_connect` is done. 73 Callback called when a stream server has received an incoming connection. 74 The user can accept the connection by calling :c:func:`uv_accept`. 87 Pointer to the stream where this connection request is running. 118 incoming connection is received the :c:type:`uv_connection_cb` callback is 125 to accept the connection. Before calling this function the client handle must 197 handle on Windows, which is a server or a connection (listening or
|
H A D | errors.rst | 104 connection already in progress 124 software caused connection abort 128 connection refused 132 connection reset by peer 300 connection timed out
|
H A D | tcp.rst | 86 from the previous one, will still happen. If the connection is still lost 149 Establish an IPv4 or IPv6 TCP connection. Provide an initialized TCP handle 157 The callback is made when the connection has been established or when a 158 connection error happened. 167 Resets a TCP connection by sending a RST packet. This is accomplished by
|
H A D | design.rst | 33 - A TCP server handle that gets its connection callback called every time there is a new connection.
|
/libuv/docs/src/guide/ |
H A D | networking.rst | 21 TCP is a connection oriented, stream protocol and is therefore based on the 32 connection is established by a client. 33 4. Use ``uv_accept`` to accept the connection. 58 When a connection is initiated by clients, the callback is required to set up 72 interested in accepting the connection. 91 where ``on_connect`` will be called after the connection is established. The
|
H A D | processes.rst | 232 that every client is sent ten ticks after which that connection is closed. 241 Here we simply accept the TCP connection and pass on the socket (*stream*) to
|
/libuv/ |
H A D | Makefile.am | 167 test/test-connection-fail.c \ 285 test/test-tcp-write-to-half-open-connection.c \
|
H A D | CMakeLists.txt | 541 test/test-connection-fail.c 664 test/test-tcp-write-to-half-open-connection.c
|
H A D | LICENSE-docs | 389 without limitation, in connection with any unauthorized modifications
|
H A D | ChangeLog | 2816 * test: increase connection timeout to 1 second (jBarz) 3613 * test: close server before initiating new connection (John Barboza) 4887 * test: don't close connection on write error (Trevor Norris)
|
Completed in 33 milliseconds