| /components/net/lwip/lwip-2.1.2/src/core/ |
| A D | altcp.c | 367 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 D | altcp_tcp.c | 337 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 D | tcp.c | 515 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 D | altcp_priv.h | 68 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 D | altcp.h | 114 err_t altcp_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx);
|
| A D | api.h | 351 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
|
| A D | tcp.h | 471 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
|
| /components/net/lwip/lwip-1.4.1/src/api/ |
| A 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) {
|
| 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 | 1384 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 D | api_msg.c | 828 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 D | api_lib.c | 854 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 D | sockets.c | 1720 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 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);
|
| /components/net/lwip/lwip-2.1.2/src/api/ |
| A D | api_msg.c | 923 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 D | api_lib.c | 1163 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 D | sockets.c | 2681 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 D | api.h | 326 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
|
| A D | tcp.h | 404 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
|
| /components/net/lwip/lwip-1.4.1/src/core/ |
| A 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()
|
| /components/net/lwip/lwip-2.0.3/src/core/ |
| A D | tcp.c | 426 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()
|