Lines Matching defs:usr

225 		outlet = &xst->authdata.generic.usr;
253 if ((xst->authdata.generic.usr != NULL) &&
257 char *usr = xst->authdata.generic.usr;
263 "Got username \"%s\", password \"%s\"\n", usr, pwd);
265 strncpy(iph1->mode_cfg->login, usr, LOGINLEN);
277 res = privsep_xauth_login_system(usr, pwd);
281 res = xauth_login_radius(iph1, usr, pwd);
287 iph1->remote, usr, pwd);
292 res = xauth_login_ldap(iph1, usr, pwd);
380 char *usr = xst->authdata.generic.usr;
387 "login failed for user \"%s\"\n", usr);
403 "login succeeded for user \"%s\"\n", usr);
493 xauth_login_radius(iph1, usr, pwd)
495 char *usr;
510 if (rad_put_string(radius_auth_state, RAD_USER_NAME, usr) != 0) {
633 xauth_login_pam(port, raddr, usr, pwd)
636 char *usr;
653 if ((error = pam_start("racoon", usr,
681 PAM_usr = usr;
793 xauth_login_ldap(iph1, usr, pwd)
795 char *usr;
877 tmplen += strlen(usr);
886 xauth_ldap_config.attr_user->v, usr);
1185 xauth_login_system(usr, pwd)
1186 char *usr;
1195 if ((spw = getspnam(usr)) == NULL)
1201 if ((pw = getpwnam(usr)) == NULL)
1224 xauth_group_system(usr, grp)
1225 char * usr;
1241 if (!strcmp(member,usr)) {
1303 char * usr = NULL;
1319 usr = iph1->mode_cfg->xauth.authdata.generic.usr;
1321 if(usr == NULL) {
1333 usr,
1355 usr,
1361 usr,
1381 vchar_t *usr = NULL;
1433 usr = vmalloc(iph1->rmconf->xauth->login->l - 1 + skip);
1434 if (usr == NULL) {
1439 memset(usr->v, 0, skip);
1440 memcpy(usr->v + skip,
1448 if ((pwd = getpskbyname(usr)) == NULL) {
1452 vfree(usr);
1458 vfree(usr);
1638 if (xst->authdata.generic.usr)
1639 racoon_free(xst->authdata.generic.usr);