Lines Matching defs:user
167 * This A-ID-Info contains a user-friendly name for the A-ID. For
257 * get_eap_user - Callback for fetching EAP user information
259 * @identity: User identity
262 * @user: Data structure for filling in the user information
265 * This is used to fetch information from user database. The callback
266 * will fill in information about allowed EAP methods and the user
271 int phase2, struct eap_user *user);
466 u8 *user;
474 user = os_malloc(256);
475 if (user == NULL) {
478 res = radius_msg_get_attr(msg, RADIUS_ATTR_USER_NAME, user, 256);
480 RADIUS_DEBUG("Could not get User-Name");
481 os_free(user);
485 RADIUS_DUMP_ASCII("User-Name", user, user_len);
487 res = data->get_eap_user(data->conf_ctx, user, user_len, 0, NULL);
488 os_free(user);
491 RADIUS_DEBUG("Matching user entry found");
498 RADIUS_DEBUG("User-Name not found from user database");
1483 struct eap_user *user)
1489 phase2, user);