|
Lines 103-108
Link Here
|
| 103 |
bool tune_kernel; /* may alter kernel settings */ |
103 |
bool tune_kernel; /* may alter kernel settings */ |
| 104 |
int connect_delay = 1000; /* wait this many ms after connect script */ |
104 |
int connect_delay = 1000; /* wait this many ms after connect script */ |
| 105 |
int req_unit = -1; /* requested interface unit */ |
105 |
int req_unit = -1; /* requested interface unit */ |
|
|
106 |
int req_minunit = -1; /* requested minimal interface unit */ |
| 106 |
bool multilink = 0; /* Enable multilink operation */ |
107 |
bool multilink = 0; /* Enable multilink operation */ |
| 107 |
char *bundle_name = NULL; /* bundle name for multilink */ |
108 |
char *bundle_name = NULL; /* bundle name for multilink */ |
| 108 |
bool dump_options; /* print out option values */ |
109 |
bool dump_options; /* print out option values */ |
|
Lines 260-265
Link Here
|
| 260 |
{ "unit", o_int, &req_unit, |
261 |
{ "unit", o_int, &req_unit, |
| 261 |
"PPP interface unit number to use if possible", |
262 |
"PPP interface unit number to use if possible", |
| 262 |
OPT_PRIO | OPT_LLIMIT, 0, 0 }, |
263 |
OPT_PRIO | OPT_LLIMIT, 0, 0 }, |
|
|
264 |
{ "minunit", o_int, &req_minunit, |
| 265 |
"PPP interface minimal unit number", |
| 266 |
OPT_PRIO | OPT_LLIMIT, 0, 0 }, |
| 263 |
|
267 |
|
| 264 |
{ "dump", o_bool, &dump_options, |
268 |
{ "dump", o_bool, &dump_options, |
| 265 |
"Print out option values after parsing all options", 1 }, |
269 |
"Print out option values after parsing all options", 1 }, |