Searched refs:shut_tx (Results 1 – 6 of 6) sorted by relevance
/lk-master/external/lib/lwip/api/ |
A D | api_msg.c | 750 u8_t shut, shut_rx, shut_tx, close; local 760 shut_tx = shut & NETCONN_SHUT_WR; 776 if (shut_tx) { 788 err = tcp_shutdown(conn->pcb.tcp, shut_rx, shut_tx); 805 if (shut_tx) {
|
A 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()
|
A D | sockets.c | 1371 u8_t shut_rx = 0, shut_tx = 0; local 1393 shut_tx = 1; 1396 shut_tx = 1; 1401 err = netconn_shutdown(sock->conn, shut_rx, shut_tx);
|
/lk-master/external/lib/lwip/include/lwip/ |
A D | api.h | 243 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
|
A D | tcp.h | 352 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
|
/lk-master/external/lib/lwip/core/ |
A D | tcp.c | 313 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx) in tcp_shutdown() argument 321 if (shut_tx) { in tcp_shutdown() 331 if (shut_tx) { in tcp_shutdown()
|
Completed in 16 milliseconds