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

  /external/syslinux/core/lwip/src/core/
tcp_in.c 174 flags = TCPH_FLAGS(tcphdr);
278 tcp_debug_print_flags(TCPH_FLAGS(tcphdr));
415 if (!(TCPH_FLAGS(tcphdr) & TCP_RST)) {
801 if (TCPH_FLAGS(cseg->tcphdr) & TCP_FIN) {
813 if (TCPH_FLAGS(next->tcphdr) & TCP_FIN) {
    [all...]
tcp.c     [all...]
tcp_out.c 131 if ((TCPH_FLAGS(last_unsent->tcphdr) & (TCP_SYN | TCP_FIN | TCP_RST)) == 0) {
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
tcp_impl.h 175 #define TCPH_FLAGS(phdr) (ntohs((phdr)->_hdrlen_rsvd_flags) & TCP_FLAGS)
177 #define TCPH_OFFSET_SET(phdr, offset) (phdr)->_hdrlen_rsvd_flags = htons(((offset) << 8) | TCPH_FLAGS(phdr))
178 #define TCPH_HDRLEN_SET(phdr, len) (phdr)->_hdrlen_rsvd_flags = htons(((len) << 12) | TCPH_FLAGS(phdr))
183 #define TCPH_UNSET_FLAG(phdr, flags) (phdr)->_hdrlen_rsvd_flags = htons(ntohs((phdr)->_hdrlen_rsvd_flags) | (TCPH_FLAGS(phdr) & ~(flags)) )
185 #define TCP_TCPLEN(seg) ((seg)->len + ((TCPH_FLAGS((seg)->tcphdr) & (TCP_FIN | TCP_SYN)) != 0))
  /external/syslinux/core/lwip/src/netif/ppp/
vj.c 167 if ((TCPH_FLAGS(th) & (TCP_SYN|TCP_FIN|TCP_RST|TCP_ACK)) != TCP_ACK) {
273 if (TCPH_FLAGS(th) & TCP_URG) {
355 if (TCPH_FLAGS(th) & TCP_PSH) {

Completed in 684 milliseconds