Lines 119-124
Link Here
|
119 |
bool tune_kernel; /* may alter kernel settings */ |
119 |
bool tune_kernel; /* may alter kernel settings */ |
120 |
int connect_delay = 1000; /* wait this many ms after connect script */ |
120 |
int connect_delay = 1000; /* wait this many ms after connect script */ |
121 |
int req_unit = -1; /* requested interface unit */ |
121 |
int req_unit = -1; /* requested interface unit */ |
|
|
122 |
int req_minunit = -1; /* requested minimal interface unit */ |
122 |
char req_ifname[MAXIFNAMELEN]; /* requested interface name */ |
123 |
char req_ifname[MAXIFNAMELEN]; /* requested interface name */ |
123 |
bool multilink = 0; /* Enable multilink operation */ |
124 |
bool multilink = 0; /* Enable multilink operation */ |
124 |
char *bundle_name = NULL; /* bundle name for multilink */ |
125 |
char *bundle_name = NULL; /* bundle name for multilink */ |
Lines 287-292
Link Here
|
287 |
{ "unit", o_int, &req_unit, |
288 |
{ "unit", o_int, &req_unit, |
288 |
"PPP interface unit number to use if possible", |
289 |
"PPP interface unit number to use if possible", |
289 |
OPT_PRIO | OPT_LLIMIT, 0, 0 }, |
290 |
OPT_PRIO | OPT_LLIMIT, 0, 0 }, |
|
|
291 |
{ "minunit", o_int, &req_minunit, |
292 |
"PPP interface minimal unit number", |
293 |
OPT_PRIO | OPT_LLIMIT, 0, 0 }, |
290 |
|
294 |
|
291 |
{ "ifname", o_string, req_ifname, |
295 |
{ "ifname", o_string, req_ifname, |
292 |
"Set PPP interface name", |
296 |
"Set PPP interface name", |