pptp.c (4ba24fef3eb3b142197135223b90ced2f319cd53) pptp.c (b6a7719aedd7e5c0f2df7641aa47386111682df4)
1/*
2 * Point-to-Point Tunneling Protocol for Linux
3 *
4 * Authors: Dmitry Kozlov <xeb@mail.ru>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version

--- 267 unchanged lines hidden (view full) ---

276 iph->tot_len = htons(skb->len);
277
278 skb_dst_drop(skb);
279 skb_dst_set(skb, &rt->dst);
280
281 nf_reset(skb);
282
283 skb->ip_summed = CHECKSUM_NONE;
1/*
2 * Point-to-Point Tunneling Protocol for Linux
3 *
4 * Authors: Dmitry Kozlov <xeb@mail.ru>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version

--- 267 unchanged lines hidden (view full) ---

276 iph->tot_len = htons(skb->len);
277
278 skb_dst_drop(skb);
279 skb_dst_set(skb, &rt->dst);
280
281 nf_reset(skb);
282
283 skb->ip_summed = CHECKSUM_NONE;
284 ip_select_ident(skb, NULL);
284 ip_select_ident(sock_net(sk), skb, NULL);
285 ip_send_check(iph);
286
287 ip_local_out(skb);
288 return 1;
289
290tx_error:
291 kfree_skb(skb);
292 return 1;

--- 429 unchanged lines hidden ---
285 ip_send_check(iph);
286
287 ip_local_out(skb);
288 return 1;
289
290tx_error:
291 kfree_skb(skb);
292 return 1;

--- 429 unchanged lines hidden ---