Searched refs:shut_rx (Results 1 – 6 of 6) sorted by relevance
/external/syslinux/core/lwip/src/api/ |
D | api_lib.c | 662 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()
|
D | api_msg.c | 738 u8_t shut, shut_rx, shut_tx, close; local 747 shut_rx = shut & NETCONN_SHUT_RD; 760 if (shut_rx) { 790 if (shut_rx) {
|
D | sockets.c | 1358 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/ |
D | api.h | 236 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
|
D | tcp.h | 350 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
|
/external/syslinux/core/lwip/src/core/ |
D | tcp.c | 278 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx) in tcp_shutdown() argument 283 if (shut_rx) { in tcp_shutdown()
|