Home | History | Annotate | Download | only in pppd

Lines Matching full:wordlist

138 /* Wordlist giving addresses which the peer may use
140 static struct wordlist *noauth_addrs;
145 /* Wordlist giving remote telephone numbers which may connect. */
146 static struct wordlist *permitted_numbers;
149 static struct wordlist *extra_options;
171 struct wordlist **paddrs,
172 struct wordlist **popts)) = NULL;
188 int (*null_auth_hook) __P((struct wordlist **paddrs,
189 struct wordlist **popts)) = NULL;
259 struct wordlist **, struct wordlist **,
261 static void free_wordlist __P((struct wordlist *));
264 static void set_allowed_addrs __P((int, struct wordlist *, struct wordlist *));
265 static int some_ip_ok __P((struct wordlist *));
271 static int wordlist_count __P((struct wordlist *));
506 struct wordlist *wp;
508 wp = (struct wordlist *) malloc(sizeof(struct wordlist) + l);
528 struct wordlist *wp;
530 wp = (struct wordlist *) malloc(sizeof(struct wordlist) + l);
1379 struct wordlist *addrs = NULL, *opts = NULL;
1503 struct wordlist *addrs, *opts;
1594 struct wordlist *addrs;
1639 struct wordlist *addrs;
1688 struct wordlist *addrs;
1731 struct wordlist *addrs, *opts;
1796 struct wordlist *addrs, *opts;
1837 struct wordlist *addrs;
1838 struct wordlist *opts;
1841 struct wordlist *ap, **plink;
2042 * some_ip_ok - check a wordlist to see if it authorizes any
2047 struct wordlist *addrs;
2065 struct wordlist *wp = permitted_numbers;
2112 * info) are placed in a wordlist and returned in *addrs. Any
2113 * following words (extra options) are placed in a wordlist and
2125 struct wordlist **addrs;
2126 struct wordlist **opts;
2133 struct wordlist *ap, *addr_list, *alist, **app;
2226 * Now read address authorization info and make a wordlist.
2232 ap = (struct wordlist *)
2233 malloc(sizeof(struct wordlist) + strlen(word) + 1);
2280 * wordlist_count - return the number of items in a wordlist
2284 struct wordlist *wp;
2294 * free_wordlist - release memory allocated for a wordlist.
2298 struct wordlist *wp;
2300 struct wordlist *next;