Searched refs:shut_rx (Results 1 - 10 of 10) sorted by relevance
/third_party/lwip/src/core/ |
H 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() 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()
|
H A 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()
|
H A D | tcp.c | 667 * @param shut_rx shut down receive side if this is != 0 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/ |
H A 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/ |
H A 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) {
|
H A D | api_lib.c | 1158 * @param shut_rx shut down the RX side (no more read possible after this) 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_SHUT_WR : 0))); in netconn_shutdown()
|
H A D | sockets.c | 2737 u8_t shut_rx = 0, shut_tx = 0; 2759 shut_rx = 1; 2763 shut_rx = 1; 2770 err = netconn_shutdown(sock->conn, shut_rx, shut_tx);
|
/third_party/lwip/src/include/lwip/ |
H A D | altcp.h | 114 err_t altcp_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx);
|
H A D | api.h | 351 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
|
H A D | tcp.h | 480 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
|
Completed in 16 milliseconds