Lines Matching refs:realms

259 	hierarchy[0] = "realms";
414 hierarchy[0] = "realms";
451 hierarchy[0] = "realms";
499 * errcode_t k5_profile_get_realms(profile_t profile, char ***realms)
502 * where realms is a string array of realm names currently configured.
504 * Note: if realms have not been configured then NULL is returned for realms.
507 k5_profile_get_realms(profile_t profile, char ***realms)
510 if (profile == NULL || realms == NULL)
513 *realms = NULL;
515 return (k5_profile_iter_name_value(profile, "realms", NULL, realms,
557 hierarchy[0] = "realms";
606 * realms. If the source and target share x-realm keys then this set to "."
701 * Note: the function removes the matching realm in the realms section,
739 hierarchy[0] = "realms";
763 * realms. If the source and target share x-realm keys then this set to "."
806 * realm in realms section differs in case from the realm specified
809 * default realm is not found in realms section
815 * no realm found in realms section
831 * realm name specified is not found in realms section
854 char *default_realm = NULL, **realms = NULL;
881 code = k5_profile_get_realms(profile, &realms);
882 if (code == 0 && realms != NULL) {
883 for (trealms = realms; *trealms; trealms++) {
968 } else if (code == 0 && realms == NULL) {
980 if (realms != NULL)
981 profile_free_list(realms);
1091 "realm in [realms] section should be in upper-case");
1095 "default_realm is not found in [realms] section");
1103 "no realms found in the [realms] section");
1125 "specified realm not found in [realms] section");