| /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 527 if (shut_tx) { in tcp_shutdown() 537 if (shut_tx) { 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.0.3/src/api/ |
| A D | api_msg.c | 828 u8_t shut, shut_rx, shut_tx, close; local 844 shut_tx = shut & NETCONN_SHUT_WR; 854 } else if (shut_tx && ((tpcb->flags & TF_RXCLOSED) != 0)) { 872 if (shut_tx) { 914 err = tcp_shutdown(tpcb, shut_rx, shut_tx); 978 if (shut_tx) { 996 if (shut_tx) {
|
| 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 1742 shut_tx = 1; in lwip_shutdown() 1745 shut_tx = 1; in lwip_shutdown() 1750 err = netconn_shutdown(sock->conn, shut_rx, shut_tx); in lwip_shutdown()
|
| /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 939 shut_tx = shut & NETCONN_SHUT_WR; 949 } else if (shut_tx && ((tpcb->flags & TF_RXCLOSED) != 0)) { 967 if (shut_tx) { 1009 err = tcp_shutdown(tpcb, shut_rx, shut_tx); 1073 if (shut_tx) { 1090 if (shut_tx) {
|
| 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 2705 shut_tx = 1; in lwip_shutdown() 2708 shut_tx = 1; in lwip_shutdown() 2714 err = netconn_shutdown(sock->conn, shut_rx, shut_tx); in lwip_shutdown()
|
| /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 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 | 1384 u8_t shut_rx = 0, shut_tx = 0; local 1406 shut_tx = 1; 1409 shut_tx = 1; 1414 err = netconn_shutdown(sock->conn, shut_rx, shut_tx);
|
| /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.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 321 if (shut_tx) { in tcp_shutdown() 331 if (shut_tx) { 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 434 if (shut_tx) { in tcp_shutdown() 444 if (shut_tx) { in tcp_shutdown()
|