Searched refs:auth_group (Results 1 – 9 of 9) sorted by relevance
/freebsd/usr.sbin/ctld/ |
H A D | ctld.h | 54 struct auth_group *a_auth_group; 63 struct auth_group *an_auth_group; 69 struct auth_group *ap_auth_group; 81 struct auth_group { struct 82 TAILQ_ENTRY(auth_group) ag_next; 117 struct auth_group *pg_discovery_auth_group; 148 struct auth_group *p_auth_group; 180 struct auth_group *t_auth_group; 200 TAILQ_HEAD(, auth_group) conf_auth_groups; 259 struct auth_group *auth_group_new(struct conf *conf, const char *name); [all …]
|
H A D | conf.c | 46 static struct auth_group *auth_group = NULL; variable 61 auth_group = NULL; in conf_finish() 116 _auth_group_set_type(struct auth_group *ag, const char *str) in _auth_group_set_type() 159 return (auth_new_chap(auth_group, user, secret)); in auth_group_add_chap() 166 return (auth_new_chap_mutual(auth_group, user, secret, user2, secret2)); in auth_group_add_chap_mutual() 172 return (auth_name_new(auth_group, name)); in auth_group_add_initiator_name() 178 return (auth_portal_new(auth_group, portal)); in auth_group_add_initiator_portal() 184 return (_auth_group_set_type(auth_group, type)); in auth_group_set_type() 201 auth_group = auth_group_find(conf, "default"); in auth_group_start() 205 auth_group = auth_group_new(conf, name); in auth_group_start() [all …]
|
H A D | ctld.c | 122 struct auth_group *ag, *cagtmp; in conf_delete() 144 auth_new(struct auth_group *ag) in auth_new() 169 auth_find(const struct auth_group *ag, const char *user) in auth_find() 243 auth_new_chap(struct auth_group *ag, const char *user, in auth_new_chap() 271 auth_new_chap_mutual(struct auth_group *ag, const char *user, in auth_new_chap_mutual() 302 auth_name_new(struct auth_group *ag, const char *name) in auth_name_new() 325 auth_name_defined(const struct auth_group *ag) in auth_name_defined() 333 auth_name_find(const struct auth_group *ag, const char *name) in auth_name_find() 346 auth_name_check(const struct auth_group *ag, const char *initiator_name) in auth_name_check() 358 auth_portal_new(struct auth_group *ag, const char *portal) in auth_portal_new() [all …]
|
H A D | uclparse.c | 191 const ucl_object_t *portal_group, *auth_group; in uclparse_target_portal_group() local 215 auth_group = ucl_object_find_key(obj, "auth-group-name"); in uclparse_target_portal_group() 216 if (auth_group != NULL) { in uclparse_target_portal_group() 217 if (auth_group->type != UCL_STRING) { in uclparse_target_portal_group() 223 ag_name = ucl_object_tostring(auth_group); in uclparse_target_portal_group()
|
H A D | parse.y | 97 auth_group 203 auth_group: AUTH_GROUP auth_group_name
|
H A D | login.c | 338 login_receive_chap_r(struct connection *conn, struct auth_group *ag, in login_receive_chap_r() 462 login_chap(struct ctld_connection *conn, struct auth_group *ag) in login_chap() 901 struct auth_group *ag; in login()
|
H A D | discovery.c | 152 const struct auth_group *ag; in discovery_target_filtered_out()
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | ibss_rsn.c | 460 ibss_rsn->auth_group = wpa_init(own_addr, &conf, &cb, ibss_rsn); in ibss_rsn_auth_init_group() 461 if (ibss_rsn->auth_group == NULL) { in ibss_rsn_auth_init_group() 466 wpa_init_keys(ibss_rsn->auth_group); in ibss_rsn_auth_init_group() 475 peer->auth = wpa_auth_sta_init(ibss_rsn->auth_group, peer->addr, NULL); in ibss_rsn_auth_init() 482 if (wpa_validate_wpa_ie(ibss_rsn->auth_group, peer->auth, 0, in ibss_rsn_auth_init() 496 if (wpa_auth_sta_associated(ibss_rsn->auth_group, peer->auth)) in ibss_rsn_auth_init() 724 if (ibss_rsn->auth_group) in ibss_rsn_deinit() 725 wpa_deinit(ibss_rsn->auth_group); in ibss_rsn_deinit() 805 wpa_receive(ibss_rsn->auth_group, peer->auth, tmp, len); in ibss_rsn_process_rx_eapol()
|
H A D | ibss_rsn.h | 48 struct wpa_authenticator *auth_group; member
|