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.c1471 struct tcphdr *tcp_hdr = NULL; in oce_correct_header()
1482 tcp_hdr = (struct tcphdr *)((char*)ip4_hdr + sizeof(struct ip)); in oce_correct_header()
1489 tcp_hdr = (struct tcphdr *)((char*)ip6 + sizeof(struct ip6_hdr)); in oce_correct_header()
1493 tcp_hdr->th_ack = htonl(cqe2->tcp_ack_num); in oce_correct_header()
1495 tcp_set_flags(tcp_hdr, tcp_get_flags(tcp_hdr) | TH_PUSH); in oce_correct_header()
1497 tcp_hdr->th_win = htons(cqe2->tcp_window); in oce_correct_header()
1498 tcp_hdr->th_sum = 0xffff; in oce_correct_header()
1500 p = (uint32_t *)((char*)tcp_hdr + sizeof(struct tcphdr) + 2); in oce_correct_header()
1473 struct tcphdr *tcp_hdr = NULL; oce_correct_header() local
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dtx.c119 tcp_hdr(skb)->check = 0; in iwl_mvm_tx_csum()