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

/freebsd-current/crypto/heimdal/appl/login/
H A Dlogin_access.c49 static int list_match(char *list, struct login_info *item,
115 match = (list_match(froms, &item, from_match)
116 && list_match(users, &item, user_match));
125 /* list_match - match an item against a list of tokens with exceptions */
128 list_match(char *list, function
156 if (tok == 0 || list_match(NULL, item, match_fn) == NO)
/freebsd-current/crypto/heimdal/appl/rsh/
H A Dlogin_access.c49 static int list_match(char *list, struct login_info *item,
115 match = (list_match(froms, &item, from_match)
116 && list_match(users, &item, user_match));
125 /* list_match - match an item against a list of tokens with exceptions */
128 list_match(char *list, function
156 if (tok == 0 || list_match(NULL, item, match_fn) == NO)
/freebsd-current/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c37 static int list_match(char *, const char *,
98 match = (list_match(froms, from, from_match, login_access_opts)
99 && list_match(users, user, user_match, login_access_opts));
108 /* list_match - match an item against a list of tokens with exceptions */
111 list_match(char *list, const char *item, function
139 list_match((char *) 0, item, match_fn, login_access_opts) == NO) {
/freebsd-current/contrib/tcp_wrappers/
H A Dhosts_access.c88 static int list_match(char *list, struct request_info *request,
185 match = list_match(sv_list, request, server_match)
186 && list_match(cl_list, request, client_match);
209 /* list_match - match a request against a list of patterns with exceptions */
211 static int list_match(char *list, struct request_info *request, function
229 return (tok == 0 || list_match((char *) 0, request, match_fn) == 0);

Completed in 77 milliseconds