/[smeserver]/rpms/ppp/sme10/ppp-2.4.3-ipv6-accept-remote.patch
ViewVC logotype

Contents of /rpms/ppp/sme10/ppp-2.4.3-ipv6-accept-remote.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Thu Feb 4 13:23:45 2016 UTC (8 years, 3 months ago) by vip-ire
Branch: MAIN
CVS Tags: ppp-2_4_5-24_el7_sme, HEAD
sme10 branch

1 --- ppp-2.4.3/pppd/ipv6cp.c~ 2005-11-04 09:40:10.000000000 +0000
2 +++ ppp-2.4.3/pppd/ipv6cp.c 2005-11-04 10:20:14.000000000 +0000
3 @@ -235,6 +235,8 @@ static option_t ipv6cp_option_list[] = {
4
5 { "ipv6cp-accept-local", o_bool, &ipv6cp_allowoptions[0].accept_local,
6 "Accept peer's interface identifier for us", 1 },
7 + { "ipv6cp-accept-remote", o_bool, &ipv6cp_allowoptions[0].accept_remote,
8 + "Accept peer's interface identifier for itself", 1 },
9
10 { "ipv6cp-use-ipaddr", o_bool, &ipv6cp_allowoptions[0].use_ip,
11 "Use (default) IPv4 address as interface identifier", 1 },
12 @@ -427,6 +429,7 @@ ipv6cp_init(unit)
13 memset(ao, 0, sizeof(*ao));
14
15 wo->accept_local = 1;
16 + wo->accept_remote = 1;
17 wo->neg_ifaceid = 1;
18 ao->neg_ifaceid = 1;
19
20 @@ -952,7 +955,7 @@ ipv6cp_reqci(f, inp, len, reject_if_disa
21 orc = CONFREJ; /* Reject CI */
22 break;
23 }
24 - if (!eui64_iszero(wo->hisid) &&
25 + if (!eui64_iszero(wo->hisid) && !wo->accept_remote &&
26 !eui64_equals(ifaceid, wo->hisid) &&
27 eui64_iszero(go->hisid)) {
28
29 --- ppp-2.4.3/pppd/ipv6cp.h~ 2002-12-04 23:03:32.000000000 +0000
30 +++ ppp-2.4.3/pppd/ipv6cp.h 2005-11-04 10:20:55.000000000 +0000
31 @@ -150,7 +150,8 @@
32 typedef struct ipv6cp_options {
33 int neg_ifaceid; /* Negotiate interface identifier? */
34 int req_ifaceid; /* Ask peer to send interface identifier? */
35 - int accept_local; /* accept peer's value for iface id? */
36 + int accept_local; /* accept peer's value for our iface id? */
37 + int accept_remote; /* accept peer's value for his iface id? */
38 int opt_local; /* ourtoken set by option */
39 int opt_remote; /* histoken set by option */
40 int use_ip; /* use IP as interface identifier */

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed