-------------------------------------------------------------------------*\ * \*-------------------------------------------------------------------------*/
| 102 | * |
| 103 | \*-------------------------------------------------------------------------*/ |
| 104 | void socket_shutdown(p_socket ps, int how) { |
| 105 | socket_setblocking(ps); |
| 106 | shutdown(*ps, how); |
| 107 | socket_setnonblocking(ps); |
| 108 | } |
| 109 | |
| 110 | /*-------------------------------------------------------------------------*\ |
| 111 | * Creates and sets up a socket |
no test coverage detected