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

/freebsd-10.0-release/crypto/heimdal/lib/kadm5/
H A Dent_setup.c186 set_value(ent->entry.max_renew, princ->max_renewable_life);
188 set_null(ent->entry.max_renew);
191 set_value(ent->entry.max_renew, def->max_renewable_life);
193 set_null(ent->entry.max_renew);
H A Dlog.c674 if (log_ent.entry.max_renew == NULL) {
675 ent.entry.max_renew = NULL;
677 if (ent.entry.max_renew == NULL) {
678 ent.entry.max_renew = malloc (sizeof(*ent.entry.max_renew));
679 if (ent.entry.max_renew == NULL) {
685 *ent.entry.max_renew = *log_ent.entry.max_renew;
H A Dget_s.c166 if(ent.entry.max_renew)
167 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));
/freebsd-10.0-release/crypto/heimdal/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);
/freebsd-10.0-release/crypto/heimdal/lib/hdb/
H A Dprint.c192 if(ent->max_renew)
193 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 Dhdb-mitdb.c259 entry->max_renew = malloc(sizeof(*entry->max_renew));
260 *entry->max_renew = u32;
/freebsd-10.0-release/crypto/heimdal/kdc/
H A Dmit_dump.c288 ALLOC(ent.entry.max_renew);
289 *ent.entry.max_renew = tmp;
H A Dkerberos5.c1584 if(client->entry.max_renew)
1585 t = start + min(t - start, *client->entry.max_renew);
1586 if(server->entry.max_renew)
1587 t = start + min(t - start, *server->entry.max_renew);
1589 t = min(t, start + realm->max_renew);
H A Dkrb5tgs.c840 if(client && client->entry.max_renew)
841 renew = min(renew, *client->entry.max_renew);
842 if(server->entry.max_renew)
843 renew = min(renew, *server->entry.max_renew);

Completed in 104 milliseconds