Home
last modified time | relevance | path

Searched defs:tcp_close (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/bsd/openldap/dist/include/ac/
H A Dsocket.h98 # define tcp_close( s ) (shutdown( s, SD_BOTH ), closesocket( s )) macro
100 # define tcp_close( s ) closesocket( s ) macro
117 # define tcp_close( s ) tcpclose( s ) macro
123 # define tcp_close( s ) close( s ) macro
128 # define tcp_close( s ) do { netclose( s ); netshut() } while(0) macro
134 # define tcp_close( s ) closesocket( s ) macro
146 # define tcp_close( s ) (shutdown( s, SHUT_RDWR ), close( s )) macro
148 # define tcp_close( s ) close( s ) macro
/netbsd-src/external/mit/libuv/dist/test/
H A Dtest-tcp-close.c101 TEST_IMPL(tcp_close) { in TEST_IMPL() argument
/netbsd-src/sys/netinet/
H A Dtcp_subr.c1046 tcp_close(struct tcpcb *tp) in tcp_close() function