Home
last modified time | relevance | path

Searched refs:the_channel (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/bsd/ppp/dist/pppd/
Dmain.c133 struct channel *the_channel; variable
445 if (the_channel->process_extra_options) in main()
446 (*the_channel->process_extra_options)(); in main()
481 if (the_channel->check_options) in main()
482 (*the_channel->check_options)(); in main()
1234 if (the_channel->send_config == NULL) in ppp_send_config()
1237 (*the_channel->send_config)(mtu, accm, pcomp, accomp); in ppp_send_config()
1252 if (the_channel->recv_config == NULL) in ppp_recv_config()
1255 (*the_channel->recv_config)(mru, accm, pcomp, accomp); in ppp_recv_config()
1321 the_channel->disestablish_ppp(devfd); in cleanup()
[all …]
Dauth.c661 devfd = the_channel->connect(); in start_link()
673 fd_ppp = the_channel->establish_ppp(devfd); in start_link()
700 if (the_channel->disconnect) in start_link()
701 the_channel->disconnect(); in start_link()
705 if (the_channel->cleanup) in start_link()
706 (*the_channel->cleanup)(); in start_link()
746 the_channel->disestablish_ppp(devfd); in link_terminated()
760 if (devfd >= 0 && the_channel->disconnect) { in link_terminated()
761 the_channel->disconnect(); in link_terminated()
764 if (the_channel->cleanup) in link_terminated()
[all …]
Dpppd.h246 extern struct channel *the_channel;
Doptions.c792 for (opt = the_channel->options; opt->name != NULL; ++opt) in find_option()
1186 print_option_list(the_channel->options, printer, arg); in print_options()
1296 the_channel->options); in showopts()
Dtty.c457 the_channel = &tty_channel; in tty_init()
/netbsd/src/external/bsd/ppp/dist/pppd/plugins/pppol2tp/
Dpppol2tp.c184 the_channel = &pppol2tp_channel; in setdevname_pppol2tp()