diff options
author | Kozlov Dmitry <dima@server> | 2010-10-29 11:03:03 +0400 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-10-29 11:03:03 +0400 |
commit | 2b4c0b2f5ff2eca2c88fbf745365956e51338538 (patch) | |
tree | de38a93018af1d00fae2cf7bbdeadd4d2314752b | |
parent | 0d2a0aafea94e33cfaa19948eb7e4dd1e62fce5e (diff) | |
download | accel-ppp-2b4c0b2f5ff2eca2c88fbf745365956e51338538.tar.gz accel-ppp-2b4c0b2f5ff2eca2c88fbf745365956e51338538.zip |
support for 2.6.36 kernel
-rw-r--r-- | accel-pptpd/ctrl/l2tp/l2tp.c | 2 | ||||
-rw-r--r-- | driver/pptp.c | 28 |
2 files changed, 29 insertions, 1 deletions
diff --git a/accel-pptpd/ctrl/l2tp/l2tp.c b/accel-pptpd/ctrl/l2tp/l2tp.c index 3dc9d61a..5bfe89ef 100644 --- a/accel-pptpd/ctrl/l2tp/l2tp.c +++ b/accel-pptpd/ctrl/l2tp/l2tp.c @@ -1060,7 +1060,7 @@ static void __init l2tp_init(void) if (opt && atoi(opt) > 0) conf_verbose = 1; - opt = conf_get_opt("l2tp", "hello_interval"); + opt = conf_get_opt("l2tp", "hello-interval"); if (opt && atoi(opt) > 0) conf_hello_interval = atoi(opt); diff --git a/driver/pptp.c b/driver/pptp.c index 58eb3076..78853fcb 100644 --- a/driver/pptp.c +++ b/driver/pptp.c @@ -400,7 +400,11 @@ static int pptp_xmit(struct ppp_channel *chan, struct sk_buff *skb) } } #endif +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) tdev = rt->u.dst.dev; +#else + tdev = rt->dst.dev; +#endif #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0) max_headroom = ((tdev->hard_header_len+15)&~15) + sizeof(*iph)+sizeof(*hdr)+2; @@ -507,7 +511,11 @@ static int pptp_xmit(struct ppp_channel *chan, struct sk_buff *skb) #endif iph->version = 4; iph->ihl = sizeof(struct iphdr) >> 2; +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) if (ip_dont_fragment(sk, &rt->u.dst)) +#else + if (ip_dont_fragment(sk, &rt->dst)) +#endif iph->frag_off = htons(IP_DF); else iph->frag_off = 0; @@ -518,14 +526,22 @@ static int pptp_xmit(struct ppp_channel *chan, struct sk_buff *skb) #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0) iph->ttl = sk->protinfo.af_inet.ttl; #else +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) iph->ttl = dst_metric(&rt->u.dst, RTAX_HOPLIMIT); +#else + iph->ttl = dst_metric(&rt->dst, RTAX_HOPLIMIT); +#endif #endif iph->tot_len = htons(skb->len); #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31) skb_dst_drop(skb); +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) skb_dst_set(skb,&rt->u.dst); #else + skb_dst_set(skb,&rt->dst); +#endif +#else dst_release(skb->dst); skb->dst = &rt->u.dst; #endif @@ -533,7 +549,11 @@ static int pptp_xmit(struct ppp_channel *chan, struct sk_buff *skb) nf_reset(skb); skb->ip_summed = CHECKSUM_NONE; +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) ip_select_ident(iph, &rt->u.dst, NULL); +#else + ip_select_ident(iph, &rt->dst, NULL); +#endif ip_send_check(iph); #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0) @@ -855,13 +875,21 @@ static int pptp_connect(struct socket *sock, struct sockaddr *uservaddr, error = -EHOSTUNREACH; goto end; } +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) sk_setup_caps(sk, &rt->u.dst); +#else + sk_setup_caps(sk, &rt->dst); +#endif } #endif #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0) po->chan.mtu=PPP_MTU; #else +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) po->chan.mtu=dst_mtu(&rt->u.dst); +#else + po->chan.mtu=dst_mtu(&rt->dst); +#endif if (!po->chan.mtu) po->chan.mtu=PPP_MTU; #endif ip_rt_put(rt); |