• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp/pppd/

Lines Matching defs:options

2  * options.c - handles option processing for PPP.

101 int option_priority = OPRIO_CFGFILE; /* priority of the current options */
132 * Structure to store extra lists of options.
135 option_t *options;
177 "Take options from a file", OPT_NOPRINT },
179 "Take options from a privileged file", OPT_NOPRINT },
192 "Show brief listing of options" },
194 "Show brief listing of options", OPT_ALIAS },
231 "Print out option values after parsing all options", 1 },
233 "Stop after parsing, printing, and checking options", 1 },
274 Usage: %s [ options ], where options are:\n\
284 file <f> Take options from file <f>\n\
287 See pppd(8) for more options.\n\
328 * options_from_file - Read a string of options from a file,
357 warn("Warning: can't open options file %s: %m", filename);
360 option_error("Can't open options file %s: %m", filename);
402 * and if so, interpret options from it.
428 * options_for_tty - See if an options file exists for the serial
429 * device, and if so, interpret options from it.
430 * We only allow the per-tty options file to override anything from
446 return 1; /* don't look for /etc/ppp/options.tty */
463 * options_from_list - process a string of options in a wordlist.
548 for (opt = list->options; opt->name != NULL; ++opt)
551 for (opt = the_channel->options; opt->name != NULL; ++opt)
555 if ((opt = protocols[i]->options) != NULL)
775 * add_options - add a list of options to the set we grok.
786 list->options = opt;
809 * check_options - check that options are valid and consistent.
922 * print_option_list - print out options in effect from an
923 * array of options.
942 * print_options - print out what options are in effect.
952 printer(arg, "pppd options in effect:\n");
956 print_option_list(list->options, printer, arg);
957 print_option_list(the_channel->options, printer, arg);
959 print_option_list(protocols[i]->options, printer, arg);
1313 * The following procedures parse options.