Home
last modified time | relevance | path

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

/lk-master/external/lib/lwip/api/
A Dapi_msg.c750 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 Dapi_lib.c702 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 Dsockets.c1371 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 Dapi.h243 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
A Dtcp.h352 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
/lk-master/external/lib/lwip/core/
A Dtcp.c313 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