Home | History | Annotate | Download | only in pppd

Lines Matching refs:wordlist

143 /* Wordlist giving addresses which the peer may use
145 static struct wordlist *noauth_addrs;
150 /* Wordlist giving remote telephone numbers which may connect. */
151 static struct wordlist *permitted_numbers;
154 static struct wordlist *extra_options;
176 struct wordlist **paddrs,
177 struct wordlist **popts)) = NULL;
193 int (*null_auth_hook) __P((struct wordlist **paddrs,
194 struct wordlist **popts)) = NULL;
260 struct wordlist **, struct wordlist **,
262 static void free_wordlist __P((struct wordlist *));
265 static void set_allowed_addrs __P((int, struct wordlist *, struct wordlist *));
266 static int some_ip_ok __P((struct wordlist *));
272 static int wordlist_count __P((struct wordlist *));
492 struct wordlist *wp;
494 wp = (struct wordlistwordlist) + l);
514 struct wordlist *wp;
516 wp = (struct wordlist *) malloc(sizeof(struct wordlist) + l);
1346 struct wordlist *addrs = NULL, *opts = NULL;
1693 struct wordlist *addrs, *opts;
1784 struct wordlist *addrs;
1829 struct wordlist *addrs;
1878 struct wordlist *addrs;
1921 struct wordlist *addrs, *opts;
1986 struct wordlist *addrs, *opts;
2027 struct wordlist *addrs;
2028 struct wordlist *opts;
2031 struct wordlist *ap, **plink;
2232 * some_ip_ok - check a wordlist to see if it authorizes any
2237 struct wordlist *addrs;
2255 struct wordlist *wp = permitted_numbers;
2302 * info) are placed in a wordlist and returned in *addrs. Any
2303 * following words (extra options) are placed in a wordlist and
2315 struct wordlist **addrs;
2316 struct wordlist **opts;
2323 struct wordlist *ap, *addr_list, *alist, **app;
2416 * Now read address authorization info and make a wordlist.
2422 ap = (struct wordlist *)
2423 malloc(sizeof(struct wordlist) + strlen(word) + 1);
2470 * wordlist_count - return the number of items in a wordlist
2474 struct wordlist *wp;
2484 * free_wordlist - release memory allocated for a wordlist.
2488 struct wordlist *wp;
2490 struct wordlist *next;