Home | History | Annotate | Download | only in pppd

Lines Matching refs:__P

169 int (*idle_time_hook) __P((struct ppp_idle *)) = NULL;
172 int (*pap_check_hook) __P((void)) = NULL;
175 int (*pap_auth_hook) __P((char *user, char *passwd, char **msgp,
180 void (*pap_logout_hook) __P((void)) = NULL;
183 int (*pap_passwd_hook) __P((char *user, char *passwd)) = NULL;
186 int (*chap_check_hook) __P((void)) = NULL;
189 int (*chap_passwd_hook) __P((char *user, char *passwd)) = NULL;
193 int (*null_auth_hook) __P((struct wordlist **paddrs,
196 int (*allowed_address_hook) __P((u_int32_t addr)) = NULL;
243 extern char *crypt __P((const char *, const char *));
247 static void network_phase __P((int));
248 static void check_idle __P((void *));
249 static void connect_time_expired __P((void *));
250 static int plogin __P((char *, char *, char **));
251 static void plogout __P((void));
252 static int null_login __P((int));
253 static int get_pap_passwd __P((char *));
254 static int have_pap_secret __P((int *));
255 static int have_chap_secret __P((char *, char *, int, int *));
256 static int have_srp_secret __P((char *client, char *server, int need_ip,
258 static int ip_addr_check __P((u_int32_t, struct permitted_ip *));
259 static int scan_authfile __P((FILE *, char *, char *, char *,
262 static void free_wordlist __P((struct wordlist *));
263 static void auth_script __P((char *));
264 static void auth_script_done __P((void *));
265 static void set_allowed_addrs __P((int, struct wordlist *, struct wordlist *));
266 static int some_ip_ok __P((struct wordlist *));
267 static int setupapfile __P((char **));
268 static int privgroup __P((char **));
269 static int set_noauth_addr __P((char **));
270 static int set_permitted_number __P((char **));
271 static void check_access __P((FILE *, char *));
272 static int wordlist_count __P((struct wordlist *));
275 static void check_maxoctets __P((void *));