HomeSort by relevance Sort by last modified time
    Searched refs:shut_rx (Results 1 - 6 of 6) sorted by null

  /external/syslinux/core/lwip/src/api/
api_lib.c 662 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx)
664 return netconn_close_shutdown(conn, (shut_rx ? NETCONN_SHUT_RD : 0) | (shut_tx ? NETCONN_SHUT_WR : 0));
api_msg.c 738 u8_t shut, shut_rx, shut_tx, close; local
747 shut_rx = shut & NETCONN_SHUT_RD;
760 if (shut_rx) {
790 if (shut_rx) {
    [all...]
sockets.c 1358 u8_t shut_rx = 0, shut_tx = 0; local
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
api.h 236 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
tcp.h 350 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
  /external/syslinux/core/lwip/src/core/
tcp.c 272 * @param shut_rx shut down receive side if this is != 0
278 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx)
283 if (shut_rx) {
    [all...]

Completed in 212 milliseconds