Lines Matching refs:wordlist
112 static struct wordlist *addresses[NUM_PPP];
117 static struct wordlist *noauth_addrs;
120 static struct wordlist *extra_options;
146 struct wordlist **paddrs,
147 struct wordlist **popts)) = NULL;
192 struct wordlist {
193 struct wordlist *next;
213 static int ip_addr_check (u32_t, struct wordlist *);
217 struct wordlist **, struct wordlist **,
219 static void free_wordlist (struct wordlist *);
222 static void set_allowed_addrs (int unit, struct wordlist *addrs);
223 static int some_ip_ok (struct wordlist *);
359 struct wordlist *wp;
361 wp = (struct wordlist *) malloc(sizeof(struct wordlist) + l + 1);
875 struct wordlist *addrs = NULL;
1078 struct wordlist *addrs;
1102 struct wordlist *addrs;
1138 set_allowed_addrs(int unit, struct wordlist *addrs)
1183 ip_addr_check(u32_t addr, struct wordlist *addrs)
1213 * some_ip_ok - check a wordlist to see if it authorizes any
1217 some_ip_ok(struct wordlist *addrs)
1252 * info) are placed in a wordlist and returned in *addrs. Any
1253 * following words (extra options) are placed in a wordlist and
1258 scan_authfile(FILE *f, char *client, char *server, char *secret, struct wordlist **addrs, struct wordlist **opts, char *filename)
1264 * free_wordlist - release memory allocated for a wordlist.
1267 free_wordlist(struct wordlist *wp)
1269 struct wordlist *next;