Searched refs:thesocket (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.2-release/contrib/apr/network_io/unix/
H A Dsockets.c33 apr_socket_t *thesocket = sock; local
34 int sd = thesocket->socketdes;
39 thesocket->socketdes = -1;
46 thesocket->socketdes = sd;
166 apr_status_t apr_socket_shutdown(apr_socket_t *thesocket, argument
169 return (shutdown(thesocket->socketdes, how) == -1) ? errno : APR_SUCCESS;
172 apr_status_t apr_socket_close(apr_socket_t *thesocket) argument
174 return apr_pool_cleanup_run(thesocket->pool, thesocket, socket_cleanup);
/freebsd-10.2-release/contrib/apr/include/
H A Dapr_network_io.h294 * @param thesocket The socket to close
305 APR_DECLARE(apr_status_t) apr_socket_shutdown(apr_socket_t *thesocket,
310 * @param thesocket The socket to close
312 APR_DECLARE(apr_status_t) apr_socket_close(apr_socket_t *thesocket); variable

Completed in 101 milliseconds