Lines Matching refs:user
173 * This A-ID-Info contains a user-friendly name for the A-ID. For
258 * get_eap_user - Callback for fetching EAP user information
260 * @identity: User identity
263 * @user: Data structure for filling in the user information
266 * This is used to fetch information from user database. The callback
267 * will fill in information about allowed EAP methods and the user
272 int phase2, struct eap_user *user);
463 u8 *user;
471 user = os_malloc(256);
472 if (user == NULL) {
475 res = radius_msg_get_attr(msg, RADIUS_ATTR_USER_NAME, user, 256);
477 RADIUS_DEBUG("Could not get User-Name");
478 os_free(user);
482 RADIUS_DUMP_ASCII("User-Name", user, user_len);
484 res = data->get_eap_user(data->conf_ctx, user, user_len, 0, NULL);
485 os_free(user);
488 RADIUS_DEBUG("Matching user entry found");
495 RADIUS_DEBUG("User-Name not found from user database");
1455 struct eap_user *user)
1461 phase2, user);