Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/api/
Dapi_lib.c662 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx) in netconn_shutdown() argument
664 …return netconn_close_shutdown(conn, (shut_rx ? NETCONN_SHUT_RD : 0) | (shut_tx ? NETCONN_SHUT_WR :… in netconn_shutdown()
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) {
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/
Dapi.h236 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
Dtcp.h350 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
/external/syslinux/core/lwip/src/core/
Dtcp.c278 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx) in tcp_shutdown() argument
283 if (shut_rx) { in tcp_shutdown()