pptp.c (37e2c2a775fc887acd1432908478dfd532f7f00f) pptp.c (73f156a6e8c1074ac6327e0abd1169e95eb66463)
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, &rt->dst, NULL);
284 ip_select_ident(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;

--- 427 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;

--- 427 unchanged lines hidden ---