Home | History | Annotate | Download | only in radius

Lines Matching defs:realm

6 * allows selection of alternate set of servers based on the user's realm.
45 char *realm;
56 realm = strrchr(user, '@');
58 if (realm) {
59 info("Looking up servers for realm '%s'", realm);
61 info("Looking up servers for DEFAULT realm");
63 if (realm) {
64 if (*(++realm) == '\0') {
65 realm = NULL;
102 option_error("%s: realm name missing on line %d: %s",
107 if ((realm != NULL && strcmp(p, realm) == 0) ||
108 (realm == NULL && strcmp(p, "DEFAULT") == 0) ) {
109 info(" - Matched realm %s", p);
128 info(" - Skipping realm '%s'", p);