Searched refs:shut_rx (Results 1 – 10 of 10) sorted by relevance
/third_party/lwip/src/core/ |
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() 561 altcp_default_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx) in altcp_default_shutdown() argument 564 if (shut_rx && shut_tx && conn->fns && conn->fns->close) { in altcp_default_shutdown() 569 return altcp_shutdown(conn->inner_conn, shut_rx, shut_tx); in altcp_default_shutdown()
|
D | altcp_tcp.c | 342 altcp_tcp_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx) in altcp_tcp_shutdown() argument 350 return tcp_shutdown(pcb, shut_rx, shut_tx); in altcp_tcp_shutdown()
|
D | tcp.c | 673 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx) in tcp_shutdown() argument 682 if (shut_rx) { in tcp_shutdown() 702 return tcp_close_shutdown(pcb, (u8_t)shut_rx); in tcp_shutdown()
|
/third_party/lwip/src/include/lwip/priv/ |
D | altcp_priv.h | 68 typedef err_t (*altcp_shutdown_fn)(struct altcp_pcb *conn, int shut_rx, int shut_tx); 131 err_t altcp_default_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx);
|
/third_party/lwip/src/api/ |
D | api_msg.c | 972 u8_t shut, shut_rx, shut_tx, shut_close; local 987 shut_rx = shut & NETCONN_SHUT_RD; 993 } else if (shut_rx && 1012 if (shut_rx) { 1058 err = tcp_shutdown(tpcb, shut_rx, shut_tx); 1119 if (shut_rx) {
|
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()
|
D | sockets.c | 2737 u8_t shut_rx = 0, shut_tx = 0; in lwip_shutdown() local 2759 shut_rx = 1; in lwip_shutdown() 2763 shut_rx = 1; in lwip_shutdown() 2770 err = netconn_shutdown(sock->conn, shut_rx, shut_tx); in lwip_shutdown()
|
/third_party/lwip/src/include/lwip/ |
D | altcp.h | 114 err_t altcp_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx);
|
D | api.h | 351 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
|
D | tcp.h | 480 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
|