[ppp] Make patches apply agagin.
[openwrt/svn-archive/archive.git] / package / ppp / patches / 100-debian_ip-ip_option.patch
1 diff -Naur ppp-2.4.4.orig/pppd/ipcp.c ppp-2.4.4/pppd/ipcp.c
2 --- ppp-2.4.4.orig/pppd/ipcp.c 2005-08-25 19:59:34.000000000 -0400
3 +++ ppp-2.4.4/pppd/ipcp.c 2009-05-07 15:47:29.000000000 -0400
4 @@ -1850,7 +1850,7 @@
5 */
6 if (ipcp_script_state == s_down && ipcp_script_pid == 0) {
7 ipcp_script_state = s_up;
8 - ipcp_script(_PATH_IPUP, 0);
9 + ipcp_script(path_ipup, 0);
10 }
11 }
12
13 @@ -1900,7 +1900,7 @@
14 /* Execute the ip-down script */
15 if (ipcp_script_state == s_up && ipcp_script_pid == 0) {
16 ipcp_script_state = s_down;
17 - ipcp_script(_PATH_IPDOWN, 0);
18 + ipcp_script(path_ipdown, 0);
19 }
20 }
21
22 @@ -1954,13 +1954,13 @@
23 case s_up:
24 if (ipcp_fsm[0].state != OPENED) {
25 ipcp_script_state = s_down;
26 - ipcp_script(_PATH_IPDOWN, 0);
27 + ipcp_script(path_ipdown, 0);
28 }
29 break;
30 case s_down:
31 if (ipcp_fsm[0].state == OPENED) {
32 ipcp_script_state = s_up;
33 - ipcp_script(_PATH_IPUP, 0);
34 + ipcp_script(path_ipup, 0);
35 }
36 break;
37 }
38 diff -Naur ppp-2.4.4.orig/pppd/main.c ppp-2.4.4/pppd/main.c
39 --- ppp-2.4.4.orig/pppd/main.c 2006-06-03 23:52:50.000000000 -0400
40 +++ ppp-2.4.4/pppd/main.c 2009-05-07 15:47:29.000000000 -0400
41 @@ -315,6 +315,9 @@
42 struct protent *protp;
43 char numbuf[16];
44
45 + strlcpy(path_ipup, _PATH_IPUP, sizeof(path_ipup));
46 + strlcpy(path_ipdown, _PATH_IPDOWN, sizeof(path_ipdown));
47 +
48 link_stats_valid = 0;
49 new_phase(PHASE_INITIALIZE);
50
51 diff -Naur ppp-2.4.4.orig/pppd/options.c ppp-2.4.4/pppd/options.c
52 --- ppp-2.4.4.orig/pppd/options.c 2006-06-18 07:26:00.000000000 -0400
53 +++ ppp-2.4.4/pppd/options.c 2009-05-07 15:47:29.000000000 -0400
54 @@ -113,6 +113,8 @@
55 bool tune_kernel; /* may alter kernel settings */
56 int connect_delay = 1000; /* wait this many ms after connect script */
57 int req_unit = -1; /* requested interface unit */
58 +char path_ipup[MAXPATHLEN]; /* pathname of ip-up script */
59 +char path_ipdown[MAXPATHLEN];/* pathname of ip-down script */
60 bool multilink = 0; /* Enable multilink operation */
61 char *bundle_name = NULL; /* bundle name for multilink */
62 bool dump_options; /* print out option values */
63 @@ -281,6 +283,13 @@
64 "Number of seconds to wait for child processes at exit",
65 OPT_PRIO },
66
67 + { "ip-up-script", o_string, path_ipup,
68 + "Set pathname of ip-up script",
69 + OPT_PRIV|OPT_STATIC, NULL, MAXPATHLEN },
70 + { "ip-down-script", o_string, path_ipdown,
71 + "Set pathname of ip-down script",
72 + OPT_PRIV|OPT_STATIC, NULL, MAXPATHLEN },
73 +
74 #ifdef HAVE_MULTILINK
75 { "multilink", o_bool, &multilink,
76 "Enable multilink operation", OPT_PRIO | 1 },
77 diff -Naur ppp-2.4.4.orig/pppd/pppd.h ppp-2.4.4/pppd/pppd.h
78 --- ppp-2.4.4.orig/pppd/pppd.h 2005-08-25 19:59:34.000000000 -0400
79 +++ ppp-2.4.4/pppd/pppd.h 2009-05-07 15:47:29.000000000 -0400
80 @@ -312,6 +312,8 @@
81 extern int connect_delay; /* Time to delay after connect script */
82 extern int max_data_rate; /* max bytes/sec through charshunt */
83 extern int req_unit; /* interface unit number to use */
84 +extern char path_ipup[MAXPATHLEN]; /* pathname of ip-up script */
85 +extern char path_ipdown[MAXPATHLEN]; /* pathname of ip-down script */
86 extern bool multilink; /* enable multilink operation */
87 extern bool noendpoint; /* don't send or accept endpt. discrim. */
88 extern char *bundle_name; /* bundle name for multilink */