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

  /external/syslinux/core/lwip/src/include/lwip/
tcp_impl.h 425 err_t tcp_enqueue_flags(struct tcp_pcb *pcb, u8_t flags);
  /external/syslinux/core/lwip/src/core/
tcp_out.c 138 return tcp_enqueue_flags(pcb, TCP_FIN);
144 * Called by tcp_write and tcp_enqueue_flags.
715 tcp_enqueue_flags(struct tcp_pcb *pcb, u8_t flags) function
722 LWIP_DEBUGF(TCP_QLEN_DEBUG, ("tcp_enqueue_flags: queuelen: %"U16_F"\n", (u16_t)pcb->snd_queuelen));
724 LWIP_ASSERT("tcp_enqueue_flags: need either TCP_SYN or TCP_FIN in flags (programmer violates API)",
729 LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 3, ("tcp_enqueue_flags: too long queue %"U16_F" (max %"U16_F")\n",
746 /* tcp_enqueue_flags is always called with either SYN or FIN in flags.
751 LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 3, ("tcp_enqueue_flags: no send buffer available\n"));
762 LWIP_ASSERT("tcp_enqueue_flags: check that first pbuf can hold optlen",
772 LWIP_ASSERT("tcp_enqueue_flags: invalid segment length", seg->len == 0)
    [all...]
tcp.c 727 ret = tcp_enqueue_flags(pcb, TCP_SYN);
    [all...]
tcp_in.c 506 rc = tcp_enqueue_flags(npcb, TCP_SYN | TCP_ACK);
    [all...]

Completed in 119 milliseconds