Searched refs:shut_rx (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dapi.h270 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
H A Dtcp.h375 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dapi_msg.c751 u8_t shut, shut_rx, shut_tx, close; local
760 shut_rx = shut & NETCONN_SHUT_RD;
773 if (shut_rx) {
789 err = tcp_shutdown(conn->pcb.tcp, shut_rx, shut_tx);
803 if (shut_rx) {
H A Dapi_lib.c711 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx) argument
713 return netconn_close_shutdown(conn, (shut_rx ? NETCONN_SHUT_RD : 0) | (shut_tx ? NETCONN_SHUT_WR : 0));
H A Dsockets.c1443 u8_t shut_rx = 0, shut_tx = 0; local
1463 shut_rx = 1;
1467 shut_rx = 1;
1473 err = netconn_shutdown(sock->conn, shut_rx, shut_tx);
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtcp.c316 * @param shut_rx shut down receive side if this is != 0
322 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx) argument
327 if (shut_rx) {
350 return tcp_close_shutdown(pcb, shut_rx);

Completed in 463 milliseconds