Home
last modified time | relevance | path

Searched refs:syncCookie (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/external/bsd/openldap/dist/servers/slapd/
Dsyncrepl.c1228 struct sync_cookie syncCookie = { NULL }; in do_syncrep2() local
1394 ch_free( syncCookie.octet_str.bv_val ); in do_syncrep2()
1395 ber_dupbv( &syncCookie.octet_str, &cookie ); in do_syncrep2()
1401 if ( !BER_BVISNULL( &syncCookie.octet_str ) ) in do_syncrep2()
1403 slap_parse_sync_cookie( &syncCookie, NULL ); in do_syncrep2()
1404 if ( syncCookie.ctxcsn ) { in do_syncrep2()
1405 … int i, slot, sid = slap_parse_csn_sid( syncCookie.ctxcsn ); in do_syncrep2()
1408 …i = check_csn_age( si, &bdn, syncCookie.ctxcsn, sid, (cookie_vals *)&si->si_cookieState->cs_vals, … in do_syncrep2()
1422 …i = check_csn_age( si, &bdn, syncCookie.ctxcsn, sid, (cookie_vals *)&si->si_cookieState->cs_pvals,… in do_syncrep2()
1425 syncCookie.ctxcsn ); in do_syncrep2()
[all …]
/netbsd/src/external/bsd/openldap/dist/doc/rfc/
Drfc4533.txt290 Done Control provides a syncCookie. The syncCookie represents
294 Operation with the syncCookie previously returned. The server, much
297 However, using the syncCookie as an indicator of what content the
412 If the server desires to update the syncCookie during the persist
413 stage, it may include the syncCookie in any Sync State Control or
418 SearchResultDone Message to provide a new syncCookie.
465 2.1.2. syncCookie
467 The syncCookie is a notational convenience to indicate that, while
468 the syncCookie type is encoded as an OCTET STRING, its value is an
478 syncCookie ::= OCTET STRING
[all …]
/netbsd/src/external/bsd/openldap/dist/clients/tools/
Dcommon.c2352 struct berval syncUUID, syncCookie = BER_BVNULL; in print_syncstate() local
2375 tag = ber_get_stringbv( ber, &syncCookie, 0 ); in print_syncstate()
2404 if ( ldif_is_not_printable( syncCookie.bv_val, syncCookie.bv_len ) ) { in print_syncstate()
2407 bv.bv_len = LUTIL_BASE64_ENCODE_LEN( syncCookie.bv_len ) + 1; in print_syncstate()
2411 … (unsigned char *) syncCookie.bv_val, syncCookie.bv_len, in print_syncstate()
2417 printf(_("# cookie: %s\n"), syncCookie.bv_val ); in print_syncstate()