HomeSort by: relevance | last modified time | path
    Searched refs:thoff (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/dev/ic/
ndisreg.h 407 #define NDIS_LSO2_INFO_MAKE(thoff, mss) \
409 ((((uint32_t)(thoff)) & 0x3ff) << 20) | \
412 #define NDIS_LSO2_INFO_MAKEIPV4(thoff, mss) \
413 NDIS_LSO2_INFO_MAKE((thoff), (mss))
415 #define NDIS_LSO2_INFO_MAKEIPV6(thoff, mss) \
416 (NDIS_LSO2_INFO_MAKE((thoff), (mss)) | NDIS_LSO2_INFO_ISIPV6)
427 #define NDIS_TXCSUM_INFO_MKL4CS(thoff, flag) \
428 ((((uint32_t)(thoff)) << 16) | (flag))
430 #define NDIS_TXCSUM_INFO_MKTCPCS(thoff) \
431 NDIS_TXCSUM_INFO_MKL4CS((thoff), NDIS_TXCSUM_INFO_TCPCS
    [all...]
  /src/sys/external/bsd/ipf/netinet/
ip_scan.c 543 int i, j, rv, dlen, off, thoff; local in function:ipf_scan_packet
562 thoff = TCP_OFF(tcp) << 2;
563 dlen = fin->fin_dlen - thoff;
574 COPYDATA(*(mb_t **)fin->fin_mp, fin->fin_plen - fin->fin_dlen + thoff,
  /src/sys/netinet/
tcp_input.c 3012 tcp_signature(struct mbuf *m, struct tcphdr *th, int thoff,
3041 ippseudo.ippseudo_len = htons(m->m_pkthdr.len - thoff);
3053 ip6pseudo.ip6ph_len = htons(m->m_pkthdr.len - thoff);
3066 l = m->m_pkthdr.len - thoff - tcphdrlen;
3068 m_apply(m, thoff + tcphdrlen,
3069 m->m_pkthdr.len - thoff - tcphdrlen,
  /src/sys/dist/pf/net/
pf_norm.c 1882 int thoff; local in function:pf_normalize_tcpopt
1887 thoff = th->th_off << 2;
1888 cnt = thoff - sizeof(struct tcphdr);

Completed in 129 milliseconds