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

/external/syslinux/core/lwip/src/api/
H A Dapi_lib.c662 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx) argument
664 return netconn_close_shutdown(conn, (shut_rx ? NETCONN_SHUT_RD : 0) | (shut_tx ? NETCONN_SHUT_WR : 0));
H A Dapi_msg.c738 u8_t shut, shut_rx, shut_tx, close; local
747 shut_rx = shut & NETCONN_SHUT_RD;
760 if (shut_rx) {
790 if (shut_rx) {
H A Dsockets.c1358 u8_t shut_rx = 0, shut_tx = 0; local
1378 shut_rx = 1;
1382 shut_rx = 1;
1388 err = netconn_shutdown(sock->conn, shut_rx, shut_tx);
/external/syslinux/core/lwip/src/include/lwip/
H A Dapi.h236 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
H A Dtcp.h350 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
/external/syslinux/core/lwip/src/core/
H A Dtcp.c272 * @param shut_rx shut down receive side if this is != 0
278 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx) argument
283 if (shut_rx) {

Completed in 150 milliseconds