Home
last modified time | relevance | path

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

/third_party/lwip/src/core/
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()
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()
Daltcp_tcp.c342 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()
Dtcp.c673 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/
Daltcp_priv.h68 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/
Dapi_msg.c972 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) {
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()
Dsockets.c2737 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/
Daltcp.h114 err_t altcp_shutdown(struct altcp_pcb *conn, int shut_rx, int shut_tx);
Dapi.h351 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
Dtcp.h480 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);