Searched refs:shut_rx (Results 1 – 6 of 6) sorted by relevance
| /lib/liblwip/src/include/lwip/ |
| D | api.h | 243 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
|
| D | tcp.h | 352 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
|
| /lib/liblwip/src/api/ |
| D | api_msg.c | 750 u8_t shut, shut_rx, shut_tx, close; local 759 shut_rx = shut & NETCONN_SHUT_RD; 772 if (shut_rx) { 788 err = tcp_shutdown(conn->pcb.tcp, shut_rx, shut_tx); 802 if (shut_rx) {
|
| D | api_lib.c | 702 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx) in netconn_shutdown() argument 704 …return netconn_close_shutdown(conn, (shut_rx ? NETCONN_SHUT_RD : 0) | (shut_tx ? NETCONN_SHUT_WR :… in netconn_shutdown()
|
| D | sockets.c | 1371 u8_t shut_rx = 0, shut_tx = 0; local 1391 shut_rx = 1; 1395 shut_rx = 1; 1401 err = netconn_shutdown(sock->conn, shut_rx, shut_tx);
|
| /lib/liblwip/src/core/ |
| D | tcp.c | 313 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx) in tcp_shutdown() argument 318 if (shut_rx) { in tcp_shutdown() 338 return tcp_close_shutdown(pcb, shut_rx); in tcp_shutdown()
|