HomeSort by: relevance | last modified time | path
    Searched refs:renew (Results 1 - 19 of 19) sorted by relevancy

  /src/external/bsd/openldap/dist/contrib/slapd-modules/kinit/
kinit.c 141 int nextcheck, remaining, renew=0; local
146 renew = kinit_check_tgt(kid, &remaining);
148 if (renew > 0) {
149 if (renew==1) {
151 "kinit_qtask: Trying to renew TGT: ");
157 renew++;
163 renew=kinit_check_tgt(kid, &remaining);
166 if (renew > 1) {
176 renew=kinit_check_tgt(kid, &remaining);
181 if (renew == 0)
    [all...]
  /src/crypto/external/bsd/heimdal/sbin/kcm/
Makefile 25 renew.c \
  /src/crypto/external/bsd/heimdal/dist/tests/db/
add-modify-delete.in 100 echo checking renew time
105 echo checking renew time
  /src/crypto/external/bsd/heimdal/dist/kuser/
kinit.c 127 { "renew", 'R', arg_flag, &renew_flag,
128 NP_("renew TGT", ""), NULL },
314 int renew,
344 if (renew) {
353 flags.b.renewable = flags.b.renew = renew;
479 krb5_deltat renew = 0; local
600 renew = parse_time(renewstr, "s");
601 if (renew < 0)
604 krb5_get_init_creds_opt_set_renew_life(opt, renew);
    [all...]
  /src/crypto/external/bsd/heimdal/dist/kcm/
renew.c 1 /* $NetBSD: renew.c,v 1.2 2017/01/28 21:31:44 christos Exp $ */
37 __RCSID("$NetBSD: renew.c,v 1.2 2017/01/28 21:31:44 christos Exp $");
98 flags.b.renew = TRUE;
109 kcm_log(0, "Failed to renew credentials for cache %s: %s",
  /src/external/bsd/dhcpcd/dist/src/
dhcp6.c 1608 /* Only renew in the bound or renew states */
1613 /* Remove the timeout as the renew may have been forced. */
1774 /* If we fail to renew or confirm, our requested addreses will
1972 logwarnx("%s: failed to renew DHCPv6, rebinding", ifp->name);
2584 (ia.t1 < state->renew || state->renew == 0))
2585 state->renew = ia.t1;
2700 state->renew = state->rebind = state->expire = 0;
3234 state->renew = IRT_DEFAULT
    [all...]
dhcp6.h 206 uint32_t renew; member in struct:dhcp6_state
  /src/external/mpl/dhcp/dist/client/
dhc6.c 529 copy->renew = ia->renew;
733 ia->renew = getULong(ds.data + 4);
741 log_debug("RCV: | X-- t1 - renew +%u", ia->renew);
754 if ((ia->renew > 0) && (ia->rebind > 0) &&
755 (ia->renew > ia->rebind)) {
756 log_debug("RCV: | !-- INVALID renew/rebind "
960 ia->renew = getULong(ds.data + 4);
968 log_debug("RCV: | X-- t1 - renew +%u", ia->renew)
4473 TIME renew=MAX_TIME, rebind=MAX_TIME, depref=MAX_TIME, local
    [all...]
clparse.c 1216 RENEW time-decl |
1295 case RENEW:
1673 case RENEW:
1676 ia->renew = atoi(val);
1801 /* No RENEW or REBIND */
1909 case RENEW:
1912 ia->renew = atoi(val);
dhclient.c 1302 renew it. */
1718 (client->state == S_RENEWING ? "RENEW" :
1729 /* If the BOUND/RENEW code detects another machine using the
2514 * is possible that we may get a NAK while in the RENEW state,
4090 " renew %u;\n"
4092 (int)ia->starts, ia->renew, ia->rebind);
4269 fprintf(leaseFile, " renew %s\n", tval) < 0)
  /src/crypto/external/bsd/heimdal/dist/kdc/
krb5tgs.c 496 if(f.renew){
500 "Request to renew non-renewable ticket");
886 time_t renew; local
887 renew = *et.renew_till - *et.starttime;
889 renew = min(renew, *client->entry.max_renew);
891 renew = min(renew, *server->entry.max_renew);
892 *et.renew_till = *et.starttime + renew;
2366 if((b->kdc_options.validate || b->kdc_options.renew) &
    [all...]
kerberos5.c 357 "%s authtime: %s starttime: %s endtime: %s renew till: %s",
1979 if(f.renew || f.validate || f.proxy || f.forwarded || f.enc_tkt_in_skey) {
  /src/lib/libpam/modules/pam_krb5/
pam_krb5.c 204 krb5_deltat renew; local
216 renew = parse_time(rtime, "s");
217 krb5_get_init_creds_opt_set_renew_life(opts, renew);
  /src/external/bsd/openldap/dist/servers/slapd/back-mdb/
id2entry.c 708 int rc, renew = 0; local
823 renew = 1;
831 if ( renew ) {
  /src/external/mpl/dhcp/dist/server/
dhcpv6.c 96 u_int32_t renew, rebind, min_prefer, min_valid; member in struct:reply_state
1746 * Renew - "Hard" binding, but client-supplied addresses are 'real'. Error
1755 * data does not error out (on renew/rebind as above), but we did not send
1948 * Sends a Renew/Rebind if the IA is not in the Reply message.
1987 reply.renew = reply.rebind = reply.min_prefer = reply.min_valid = 0;
2028 reply->renew = getULong(ia_data.data + 4);
2106 putULong(reply->buf.data + reply->cursor, reply->renew);
2120 * A not included IA ("cleanup" below) could give a Renew/Rebind.
2610 "not sending a solicit, request, renew, or "
2696 "not sending a solicit, request, renew, or
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
get_cred.c 1680 flags.b.renewable = flags.b.renew = 1;
  /src/crypto/external/bsd/heimdal/dist/tests/kdc/
check-kdc.in 749 ${kinit} --renew || { ec=1 ; eval "${testfailed}"; }
  /src/external/mpl/dhcp/dist/includes/
dhcpd.h 1182 u_int32_t renew; member in struct:dhc6_ia
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb.c 2880 DPRINTF(("renew txn %"Z"u%c %p on mdbenv %p, root page %"Z"u",
2917 goto renew;
2971 renew:

Completed in 56 milliseconds