Home
last modified time | relevance | path

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

/components/net/lwip/lwip-2.1.2/src/core/
A Daltcp.c367 altcp_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx) in altcp_shutdown() argument
370 return conn->fns->shutdown(conn, shut_rx, shut_tx); in altcp_shutdown()
543 altcp_default_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx) in altcp_default_shutdown() argument
546 if (shut_rx && shut_tx && conn->fns && conn->fns->close) { in altcp_default_shutdown()
551 return altcp_shutdown(conn->inner_conn, shut_rx, shut_tx); in altcp_default_shutdown()
A Daltcp_tcp.c337 altcp_tcp_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx) in altcp_tcp_shutdown() argument
345 return tcp_shutdown(pcb, shut_rx, shut_tx); in altcp_tcp_shutdown()
A Dtcp.c515 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx) in tcp_shutdown() argument
524 if (shut_rx) { in tcp_shutdown()
544 return tcp_close_shutdown(pcb, (u8_t)shut_rx); in tcp_shutdown()
/components/net/lwip/lwip-2.1.2/src/include/lwip/priv/
A Daltcp_priv.h68 typedef err_t (*altcp_shutdown_fn)(struct altcp_pcb *conn, int shut_rx, int shut_tx);
122 err_t altcp_default_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx);
/components/net/lwip/lwip-2.1.2/src/include/lwip/
A Daltcp.h114 err_t altcp_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx);
A Dapi.h351 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
A Dtcp.h471 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
/components/net/lwip/lwip-1.4.1/src/api/
A Dapi_msg.c750 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) {
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.c1384 u8_t shut_rx = 0, shut_tx = 0; local
1404 shut_rx = 1;
1408 shut_rx = 1;
1414 err = netconn_shutdown(sock->conn, shut_rx, shut_tx);
/components/net/lwip/lwip-2.0.3/src/api/
A Dapi_msg.c828 u8_t shut, shut_rx, shut_tx, close; local
843 shut_rx = shut & NETCONN_SHUT_RD;
849 } else if (shut_rx &&
868 if (shut_rx) {
914 err = tcp_shutdown(tpcb, shut_rx, shut_tx);
975 if (shut_rx) {
A Dapi_lib.c854 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx) in netconn_shutdown() argument
856 …return netconn_close_shutdown(conn, (shut_rx ? NETCONN_SHUT_RD : 0) | (shut_tx ? NETCONN_SHUT_WR :… in netconn_shutdown()
A Dsockets.c1720 u8_t shut_rx = 0, shut_tx = 0; in lwip_shutdown() local
1740 shut_rx = 1; in lwip_shutdown()
1744 shut_rx = 1; in lwip_shutdown()
1750 err = netconn_shutdown(sock->conn, shut_rx, shut_tx); in lwip_shutdown()
/components/net/lwip/lwip-1.4.1/src/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);
/components/net/lwip/lwip-2.1.2/src/api/
A Dapi_msg.c923 u8_t shut, shut_rx, shut_tx, shut_close; local
938 shut_rx = shut & NETCONN_SHUT_RD;
944 } else if (shut_rx &&
963 if (shut_rx) {
1009 err = tcp_shutdown(tpcb, shut_rx, shut_tx);
1070 if (shut_rx) {
A Dapi_lib.c1163 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx) in netconn_shutdown() argument
1165 …return netconn_close_shutdown(conn, (u8_t)((shut_rx ? NETCONN_SHUT_RD : 0) | (shut_tx ? NETCONN_SH… in netconn_shutdown()
A Dsockets.c2681 u8_t shut_rx = 0, shut_tx = 0; in lwip_shutdown() local
2703 shut_rx = 1; in lwip_shutdown()
2707 shut_rx = 1; in lwip_shutdown()
2714 err = netconn_shutdown(sock->conn, shut_rx, shut_tx); in lwip_shutdown()
/components/net/lwip/lwip-2.0.3/src/include/lwip/
A Dapi.h326 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
A Dtcp.h404 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
/components/net/lwip/lwip-1.4.1/src/core/
A Dtcp.c313 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()
/components/net/lwip/lwip-2.0.3/src/core/
A Dtcp.c426 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx) in tcp_shutdown() argument
431 if (shut_rx) { in tcp_shutdown()
451 return tcp_close_shutdown(pcb, (u8_t)shut_rx); in tcp_shutdown()

Completed in 79 milliseconds