1cldap_setretryinfo(3LDAP) LDAP Library Functions cldap_setretryinfo(3LDAP)
2
3
4
6 cldap_setretryinfo - set connectionless LDAP request retransmission
7 parameters
8
10 cc[ flag... ] file... -lldap[ library... ]
11 #include <lber.h>
12 #include <ldap.h>
13
14 void cldap_setretryinfo(LDAP *ld, int tries, int timeout);
15
16
18 ld LDAP pointer returned from a previous call to
19 cldap_open(3LDAP).
20
21
22 tries Maximum number of times to send a request.
23
24
25 timeout Initial time, in seconds, to wait before re-sending a
26 request.
27
28
30 The cldap_setretryinfo() function is used to set the CLDAP request
31 retransmission behavior for future cldap_search_s(3LDAP) calls. The
32 default values (set by cldap_open(3LDAP)) are 4 tries and 3 seconds
33 between tries. See cldap_search_s(3LDAP) for a complete description of
34 the retransmission algorithm used.
35
37 See attributes(5) for a description of the following attributes:
38
39
40
41
42 ┌─────────────────────────────┬─────────────────────────────┐
43 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
44 │Availability │SUNWcsl (32-bit) │
45 │ │SUNWcslx (64-bit) │
46 │Interface Stability │Evolving │
47 └─────────────────────────────┴─────────────────────────────┘
48
50 ldap(3LDAP), cldap_open(3LDAP), cldap_search_s(3LDAP),
51 cldap_close(3LDAP), attributes(5)
52
53
54
55SunOS 5.11 27 Jan 2002 cldap_setretryinfo(3LDAP)