Searched refs:the_vpn_channel (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/ppp-786.1.1/Drivers/PPPoE/PPPoE-vpn/
H A Dmain.c116 int start(struct vpn_channel* the_vpn_channel, CFBundleRef ref, CFBundleRef pppref, int debug, int log_verbose) argument
158 bzero(the_vpn_channel, sizeof(struct vpn_channel));
159 the_vpn_channel->get_pppd_args = pppoevpn_get_pppd_args;
160 the_vpn_channel->listen = pppoevpn_listen;
161 the_vpn_channel->accept = pppoevpn_accept;
162 the_vpn_channel->refuse = pppoevpn_refuse;
163 the_vpn_channel->close = pppoevpn_close;
/macosx-10.10/ppp-786.1.1/Drivers/PPTP/PPTP-vpn/
H A Dmain.c103 int start(struct vpn_channel* the_vpn_channel, CFBundleRef ref, CFBundleRef pppref, int debug, int log_verbose) argument
145 bzero(the_vpn_channel, sizeof(struct vpn_channel));
146 the_vpn_channel->get_pppd_args = pptpvpn_get_pppd_args;
147 the_vpn_channel->listen = pptpvpn_listen;
148 the_vpn_channel->accept = pptpvpn_accept;
149 the_vpn_channel->refuse = pptpvpn_refuse;
150 the_vpn_channel->close = pptpvpn_close;
/macosx-10.10/ppp-786.1.1/Helpers/vpnd/
H A Dvpnplugins.c95 static struct vpn_channel the_vpn_channel; variable in typeref:struct:vpn_channel
308 bzero(&the_vpn_channel, sizeof(struct vpn_channel));
310 err = add_builtin_plugin(params, &the_vpn_channel);
360 err = (*start)(&the_vpn_channel, pluginbdl, bdl, params->debug, params->log_verbose);
372 err = (*start)(&the_vpn_channel, bdl, NULL, params->debug, params->log_verbose);
385 if (the_vpn_channel.listen == 0 || the_vpn_channel.accept == 0
386 || the_vpn_channel.refuse == 0 || the_vpn_channel.close == 0) {
403 if (the_vpn_channel
[all...]
/macosx-10.10/ppp-786.1.1/Drivers/L2TP/L2TP-vpn/
H A Dmain.c133 int start(struct vpn_channel* the_vpn_channel, CFBundleRef ref, CFBundleRef pppref, int debug_mode, int log_verbose) argument
199 bzero(the_vpn_channel, sizeof(struct vpn_channel));
200 the_vpn_channel->get_pppd_args = l2tpvpn_get_pppd_args;
201 the_vpn_channel->listen = l2tpvpn_listen;
202 the_vpn_channel->accept = l2tpvpn_accept;
203 the_vpn_channel->refuse = l2tpvpn_refuse;
204 the_vpn_channel->close = l2tpvpn_close;
205 the_vpn_channel->health_check = l2tpvpn_health_check;
206 the_vpn_channel->lb_redirect = l2tpvpn_lb_redirect;

Completed in 74 milliseconds