Home
last modified time | relevance | path

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

/Linux-v4.19/net/netfilter/ipvs/
Dip_vs_proto_tcp.c151 unsigned int tcphoff = iph->len; in tcp_snat_handler() local
159 oldlen = skb->len - tcphoff; in tcp_snat_handler()
162 if (!skb_make_writable(skb, tcphoff+sizeof(*tcph))) in tcp_snat_handler()
177 oldlen = skb->len - tcphoff; in tcp_snat_handler()
182 tcph = (void *)skb_network_header(skb) + tcphoff; in tcp_snat_handler()
189 htons(skb->len - tcphoff)); in tcp_snat_handler()
200 skb->csum = skb_checksum(skb, tcphoff, skb->len - tcphoff, 0); in tcp_snat_handler()
205 skb->len - tcphoff, in tcp_snat_handler()
211 skb->len - tcphoff, in tcp_snat_handler()
229 unsigned int tcphoff = iph->len; in tcp_dnat_handler() local
[all …]
/Linux-v4.19/net/netfilter/
Dxt_TCPOPTSTRIP.c34 unsigned int tcphoff, unsigned int minlen) in tcpoptstrip_mangle_packet() argument
50 len = skb->len - tcphoff; in tcpoptstrip_mangle_packet()
54 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); in tcpoptstrip_mangle_packet()
103 int tcphoff; in tcpoptstrip_tg6() local
108 tcphoff = ipv6_skip_exthdr(skb, sizeof(*ipv6h), &nexthdr, &frag_off); in tcpoptstrip_tg6()
109 if (tcphoff < 0) in tcpoptstrip_tg6()
112 return tcpoptstrip_mangle_packet(skb, par, tcphoff, in tcpoptstrip_tg6()
Dxt_TCPMSS.c77 unsigned int tcphoff, in tcpmss_mangle_packet() argument
95 len = skb->len - tcphoff; in tcpmss_mangle_packet()
99 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); in tcpmss_mangle_packet()
162 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); in tcpmss_mangle_packet()
227 int tcphoff; in tcpmss_tg6() local
231 tcphoff = ipv6_skip_exthdr(skb, sizeof(*ipv6h), &nexthdr, &frag_off); in tcpmss_tg6()
232 if (tcphoff < 0) in tcpmss_tg6()
236 tcphoff, in tcpmss_tg6()
/Linux-v4.19/net/ipv6/netfilter/
Dnf_reject_ipv6.c25 int tcphoff; in nf_reject_ip6_tcphdr_get() local
28 tcphoff = ipv6_skip_exthdr(oldskb, ((u8 *)(oip6h + 1) - oldskb->data), in nf_reject_ip6_tcphdr_get()
31 if ((tcphoff < 0) || (tcphoff > oldskb->len)) { in nf_reject_ip6_tcphdr_get()
36 *otcplen = oldskb->len - tcphoff; in nf_reject_ip6_tcphdr_get()
45 otcph = skb_header_pointer(oldskb, tcphoff, sizeof(struct tcphdr), in nf_reject_ip6_tcphdr_get()
57 if (nf_ip6_checksum(oldskb, hook, tcphoff, IPPROTO_TCP)) { in nf_reject_ip6_tcphdr_get()