Searched refs:max_renew (Results 1 - 11 of 11) sorted by relevance

/macosx-10.10.1/Heimdal-398.1.2/lib/kadm5/
H A Dent_setup.c194 set_value(ent->entry.max_renew, (unsigned int)princ->max_renewable_life);
196 set_null(ent->entry.max_renew);
199 set_value(ent->entry.max_renew, (unsigned int)def->max_renewable_life);
201 set_null(ent->entry.max_renew);
H A Dlog.c678 if (log_ent.entry.max_renew == NULL) {
679 ent.entry.max_renew = NULL;
681 if (ent.entry.max_renew == NULL) {
682 ent.entry.max_renew = malloc (sizeof(*ent.entry.max_renew));
683 if (ent.entry.max_renew == NULL) {
689 *ent.entry.max_renew = *log_ent.entry.max_renew;
H A Dget_s.c236 if(ent.entry.max_renew)
237 out->max_renewable_life = *ent.entry.max_renew;
H A Diprop-log.c216 if(ent.max_renew == NULL)
219 unparse_time(*ent.max_renew, t, sizeof(t));
/macosx-10.10.1/Heimdal-398.1.2/lib/hdb/
H A Dprint.c202 if(ent->max_renew)
203 append_string(context, sp, "%d ", *ent->max_renew);
H A Dhdb-ldap.c588 if (is_heimdal_entry && ent->entry.max_renew) {
589 if (orig.entry.max_renew == NULL
590 || (*(ent->entry.max_renew) != *(orig.entry.max_renew))) {
594 *(ent->entry.max_renew));
1295 int max_renew; local
1297 ent->entry.max_renew = malloc(sizeof(*ent->entry.max_renew));
1298 if (ent->entry.max_renew == NULL) {
1303 ret = LDAP_get_integer_value(db, msg, "krb5MaxRenew", &max_renew);
[all...]
H A Dmit_dump.c293 ALLOC(ent.entry.max_renew);
294 *ent.entry.max_renew = tmp;
H A Dhdb-mitdb.c357 entry->max_renew = malloc(sizeof(*entry->max_renew));
358 *entry->max_renew = u32;
/macosx-10.10.1/Heimdal-398.1.2/kadmin/
H A Dload.c42 char *max_renew; member in struct:entry
436 e.max_renew = p;
503 if (parse_integer_alloc (&ent.entry.max_renew, e.max_renew) == -1) {
505 filename, line, e.max_renew);
/macosx-10.10.1/Heimdal-398.1.2/kdc/
H A Dkerberos5.c2336 if(r->client->entry.max_renew)
2337 t = start + min(t - start, *r->client->entry.max_renew);
2338 if(r->server->entry.max_renew)
2339 t = start + min(t - start, *r->server->entry.max_renew);
2341 t = min(t, start + realm->max_renew);
H A Dkrb5tgs.c834 if(client && client->entry.max_renew)
835 renew = min(renew, *client->entry.max_renew);
836 if(server->entry.max_renew)
837 renew = min(renew, *server->entry.max_renew);

Completed in 104 milliseconds