Home
last modified time | relevance | path

Searched refs:tcp_hdr (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dtcp.h55 tcp_hdr(struct sk_buff *skb) in tcp_hdr() function
66 th = tcp_hdr(skb); in tcp_hdrlen()
/freebsd/cddl/lib/libdtrace/
H A Dtcp.d182 struct tcphdr *tcp_hdr; /* raw TCP header */ member
201 struct tcphdr *tcp_hdr; /* raw TCP header */ member
273 tcp_hdr = (struct tcphdr *)p;
292 tcp_hdr = (struct tcphdr *)p;
/freebsd/sys/dev/oce/
H A Doce_if.c1477 struct tcphdr *tcp_hdr = NULL; in oce_correct_header() local
1488 tcp_hdr = (struct tcphdr *)((char*)ip4_hdr + sizeof(struct ip)); in oce_correct_header()
1495 tcp_hdr = (struct tcphdr *)((char*)ip6 + sizeof(struct ip6_hdr)); in oce_correct_header()
1499 tcp_hdr->th_ack = htonl(cqe2->tcp_ack_num); in oce_correct_header()
1501 tcp_hdr->th_flags |= TH_PUSH; in oce_correct_header()
1503 tcp_hdr->th_win = htons(cqe2->tcp_window); in oce_correct_header()
1504 tcp_hdr->th_sum = 0xffff; in oce_correct_header()
1506 p = (uint32_t *)((char*)tcp_hdr + sizeof(struct tcphdr) + 2); in oce_correct_header()
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dtx.c119 tcp_hdr(skb)->check = 0; in iwl_mvm_tx_csum()