summaryrefslogtreecommitdiff
path: root/usr/src/lib/libldap4/spec/ldap.spec
blob: c2c8ff4b8950faa17405bd91af6b0014b3ad149a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
#
# Copyright (c) 1998-1999 by Sun Microsystems, Inc.
# All rights reserved.
#
#pragma ident	"%Z%%M%	%I%	%E% SMI"
#
# lib/libldap/spec/ldap.spec

function	ber_alloc_t
include		<lber.h>, <ldap.h>
declaration	BerElement *ber_alloc_t(int options)
version		SUNW_1.1
exception	$return == NULLBER
end		

function	ber_bvdup
include		<lber.h>, <ldap.h>
declaration	struct berval *ber_bvdup(struct berval *bv)
version		SUNW_1.1
exception	$return == NULL
end		

function	ber_bvecfree
include		<lber.h>, <ldap.h>
declaration	void ber_bvecfree(struct berval **bv)
version		SUNW_1.1
end		

function	ber_bvfree
include		<lber.h>, <ldap.h>
declaration	void ber_bvfree(struct berval *bv)
version		SUNW_1.1
end		

function	ber_first_element
include		<lber.h>, <ldap.h>
declaration	unsigned int ber_first_element(BerElement *ber, \
			unsigned int *len, char **last)
version		SUNW_1.1
end		

function	ber_flatten
include		<lber.h>, <ldap.h>
declaration	int ber_flatten(BerElement *ber, struct berval **bvPtr)
version		SUNW_1.1
exception	$return == -1
end		

function	ber_free
include		<lber.h>, <ldap.h>
declaration	void ber_free(BerElement *ber, int freebuf)
version		SUNW_1.1
end		

function	ber_init
include		<lber.h>, <ldap.h>
declaration	BerElement *ber_init(struct berval *bv)
version		SUNW_1.1
exception	$return == NULLBER
end		

function	ber_next_element
include		<lber.h>, <ldap.h>
declaration	unsigned int ber_next_element(BerElement *ber, \
			unsigned int *len, char *last)
version		SUNW_1.1
end		

function	ber_peek_tag
include		<lber.h>, <ldap.h>
declaration	unsigned int ber_peek_tag(BerElement *ber, unsigned int *len)
version		SUNW_1.1
end		

function	ber_printf
include		<lber.h>, <ldap.h>
declaration	int ber_printf(BerElement *ber, char *fmt, ...)
version		SUNW_1.1
exception	$return == -1
end		

function	ber_scanf
include		<lber.h>, <ldap.h>
declaration	unsigned int ber_scanf(BerElement *ber, char *fmt, ...)
version		SUNW_1.1
exception	$return == LBER_DEFAULT
end		

function	ber_skip_tag
include		<lber.h>, <ldap.h>
declaration	unsigned int ber_skip_tag(BerElement *ber, unsigned int *len)
version		SUNW_1.1
end		

function	ber_get_int
include		<lber.h>
declaration	unsigned int ber_get_int(BerElement *ber, int *num)
version		SUNW_1.2
end

function	ber_alloc
include		<lber.h>
declaration	BerElement *ber_alloc(void)
version		SUNW_1.2
end

function	cldap_close
include		<lber.h>, <ldap.h>
declaration	void cldap_close(LDAP *ld)
version		SUNW_1.1
end		

function	cldap_open
include		<lber.h>, <ldap.h>
declaration	LDAP *cldap_open(char *host, int port)
version		SUNW_1.1
exception	$return == NULL
end		

function	cldap_search_s
include		<lber.h>, <ldap.h>
declaration	int cldap_search_s(LDAP *ld, char *base, int scope, \
			char *filter, char **attrs, int attrsonly, \
			LDAPMessage **res, char *logdn)
version		SUNW_1.1
exception	$return == -1
end		

function	cldap_setretryinfo
include		<lber.h>, <ldap.h>
declaration	void cldap_setretryinfo(LDAP *ld, int tries, time_t timeout)
version		SUNW_1.1
end		

function	i18n_catopen
include		<lber.h>, <ldap.h>
declaration	void i18n_catopen(char *name)
version		SUNWprivate_1.1
end		

function	ldap_abandon
include		<lber.h>, <ldap.h>
declaration	int ldap_abandon(LDAP *ld, int msgid)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_abandon_ext
include		<lber.h>, <ldap.h>
declaration	int ldap_abandon_ext(LDAP *ld, int msgid, \
			LDAPControl **serverctrls, LDAPControl **clientctrls)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_add
include		<lber.h>, <ldap.h>
declaration	int ldap_add(LDAP *ld, char *dn, LDAPMod **attrs)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_add_ext
include		<lber.h>, <ldap.h>
declaration	int ldap_add_ext(LDAP *ld, char *dn, LDAPMod **attrs, \
			LDAPControl **serverctrls, \
			LDAPControl **clientctrls, int *msgidp)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_add_ext_s
include		<lber.h>, <ldap.h>
declaration	int ldap_add_ext_s(LDAP *ld, char *dn, LDAPMod **attrs, LDAPControl **serverctrls, LDAPControl **clientctrls)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_add_s
include		<lber.h>, <ldap.h>
declaration	int ldap_add_s(LDAP *ld, char *dn, LDAPMod **attrs)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_bind
include		<lber.h>, <ldap.h>
declaration	int ldap_bind(LDAP *ld, char *dn, char *passwd, int authmethod)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_bind_s
include		<lber.h>, <ldap.h>
declaration	int ldap_bind_s(LDAP *ld, char *dn, char *passwd, \
			int authmethod)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_build_filter
include		<lber.h>, <ldap.h>
declaration	void ldap_build_filter(char *filtbuf, size_t buflen, \
			char *pattern, char *prefix, char *suffix, \
			char *attr, char *value, char **valwords)
version		SUNW_1.1
end		

function	ldap_compare
include		<lber.h>, <ldap.h>
declaration	int ldap_compare(LDAP *ld, char *dn, char *attr, char *value)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_compare_ext
include		<lber.h>, <ldap.h>
declaration	int ldap_compare_ext(LDAP *ld, char *dn, char *attr, \
			struct berval *bvalue, LDAPControl **serverctrls, \
			LDAPControl **clientctrls, int *msgidp)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_compare_ext_s
include		<lber.h>, <ldap.h>
declaration	int ldap_compare_ext_s(LDAP *ld, char *dn, char *attr, \
			struct berval *bvalue, LDAPControl **serverctrls, \
			LDAPControl **clientctrls)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_compare_s
include		<lber.h>, <ldap.h>
declaration	int ldap_compare_s(LDAP *ld, char *dn, char *attr, char *value)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_control_free
include		<lber.h>, <ldap.h>
declaration	void ldap_control_free (LDAPControl *ctrl)
version		SUNW_1.1
end		

function	ldap_controls_free
include		<lber.h>, <ldap.h>
declaration	void ldap_controls_free (LDAPControl **ctrls)
version		SUNW_1.1
end		

function	ldap_count_entries
include		<lber.h>, <ldap.h>
declaration	int ldap_count_entries(LDAP *ld, LDAPMessage *res)
version		SUNW_1.1
end		

function	ldap_count_messages
include		<lber.h>, <ldap.h>
declaration	int ldap_count_messages(LDAP *ld, LDAPMessage *res)
version		SUNW_1.1
end		

function	ldap_count_references
include		<lber.h>, <ldap.h>
declaration	int ldap_count_references(LDAP *ld, LDAPMessage *res)
version		SUNW_1.1
end		

function	ldap_count_values
include		<lber.h>, <ldap.h>
declaration	int ldap_count_values(char **vals)
version		SUNW_1.1
end		

function	ldap_count_values_len
include		<lber.h>, <ldap.h>
declaration	int ldap_count_values_len(struct berval **vals)
version		SUNW_1.1
end		

function	ldap_create_page_control
include		<lber.h>, <ldap.h>
declaration	int ldap_create_page_control(LDAP *ld, \
			unsigned int pagesize, struct berval *cookie, \
			char isCritical, LDAPControl **output)
version		SUNWprivate_1.1
end		

function	ldap_delete
include		<lber.h>, <ldap.h>
declaration	int ldap_delete(LDAP *ld, char *dn)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_delete_ext
include		<lber.h>, <ldap.h>
declaration	int ldap_delete_ext(LDAP *ld, char *dn, \
			LDAPControl **serverctrls, \
			LDAPControl **clientctrls, int *msgidp)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_delete_ext_s
include		<lber.h>, <ldap.h>
declaration	int ldap_delete_ext_s(LDAP *ld, char *dn, \
			LDAPControl **serverctrls, LDAPControl **clientctrls)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_delete_s
include		<lber.h>, <ldap.h>
declaration	int ldap_delete_s(LDAP *ld, char *dn)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_destroy_cache
include		<lber.h>, <ldap.h>
declaration	void ldap_destroy_cache(LDAP *ld)
version		SUNW_1.1
end		

function	ldap_disable_cache
include		<lber.h>, <ldap.h>
declaration	void ldap_disable_cache(LDAP *ld)
version		SUNW_1.1
end		

function	ldap_dn2ufn
include		<lber.h>, <ldap.h>
declaration	char *ldap_dn2ufn(char *dn)
version		SUNW_1.1
end		

function	ldap_dn_to_url
include		<lber.h>, <ldap.h>
declaration	char *ldap_dn_to_url(LDAP *ld, char*dn, int nameparts)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_dns_to_dn
include		<lber.h>, <ldap.h>
declaration	char *ldap_dns_to_dn(char *dns_name, int *nameparts)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_dns_to_url
include		<lber.h>, <ldap.h>
declaration	char *ldap_dns_to_url(LDAP *ld, char *dns_name, \
			char *attrs, char *scope, char *filter)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_enable_cache
include		<lber.h>, <ldap.h>
declaration	int ldap_enable_cache(LDAP *ld, time_t timeout, ssize_t maxmem)
version		SUNW_1.1
end		

function	ldap_enable_translation
include		<lber.h>, <ldap.h>
declaration	void ldap_enable_translation(LDAP *ld, LDAPMessage *entry, \
			int enable)
version		SUNW_1.1
end		

function	ldap_entry2html
include		<lber.h>, <ldap.h>
declaration	int ldap_entry2html(LDAP *ld, char *buf, LDAPMessage *entry, \
			struct ldap_disptmpl *tmpl, char **defattrs, \
			char ***defvals, writeptype writeproc, \
			void *writeparm, char *eol, int rdncount, \
			unsigned int opts, char *base, char *urlprefix)
version		SUNW_1.1
end		

function	ldap_entry2html_search
include		<lber.h>, <ldap.h>
declaration	int ldap_entry2html_search(LDAP *ld, char *dn, char *base, \
			LDAPMessage *entry, struct ldap_disptmpl*tmpllist, \
			char **defattrs, char ***defvals, \
			writeptype writeproc, void *writeparm, \
			char *eol,int rdncount, unsigned int opts, \
			char *urlprefix)
version		SUNW_1.1
end		

function	ldap_entry2text
include		<lber.h>, <ldap.h>
declaration	int ldap_entry2text(LDAP *ld, char *buf, \
			LDAPMessage *entry, struct ldap_disptmpl *tmpl, \
			char **defattrs, char ***defvals, \
			writeptype writeproc, void *writeparm, char *eol, \
			int rdncount, unsigned int opts)
version		SUNW_1.1
end		

function	ldap_entry2text_search
include		<lber.h>, <ldap.h>
declaration	int ldap_entry2text_search(LDAP *ld,char *dn, char *base, \
			LDAPMessage *entry, struct ldap_disptmpl*tmpllist, \
			char **defattrs, char ***defvals, \
			writeptype writeproc, void *writeparm, \
			char *eol,int rdncount, unsigned int opts)
version		SUNW_1.1
end		

function	ldap_err2string
include		<lber.h>, <ldap.h>
declaration	char *ldap_err2string(int err)
version		SUNW_1.1
end		

function	ldap_explode_dn
include		<lber.h>, <ldap.h>
declaration	char **ldap_explode_dn(char *dn, int notypes)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_explode_dns
include		<lber.h>, <ldap.h>
declaration	char **ldap_explode_dns(char *dn)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_explode_rdn
include		<lber.h>, <ldap.h>
declaration	char **ldap_explode_rdn(char *rdn, int notypes)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_extended_operation
include		<lber.h>, <ldap.h>
declaration	int ldap_extended_operation(LDAP *ld, char *exoid, \
			struct berval *exdata, LDAPControl **serverctrls, \
			LDAPControl**clientctrls, int *msgidp)
version		SUNW_1.1
end		

function	ldap_extended_operation_s
include		<lber.h>, <ldap.h>
declaration	int ldap_extended_operation_s(LDAP *ld, char *exoid, \
			struct berval *exdata, LDAPControl **serverctrls, \
			LDAPControl **clientctrls, char **retoidp, \
			struct berval **retdatap)
version		SUNW_1.1
end		

function	ldap_first_attribute
include		<lber.h>, <ldap.h>
declaration	char *ldap_first_attribute(LDAP *ld, LDAPMessage *entry, \
			BerElement **ber) 
version		SUNW_1.1
end		

function	ldap_first_disptmpl
include		<lber.h>, <ldap.h>
declaration	struct ldap_disptmpl *ldap_first_disptmpl \
			(struct ldap_disptmpl *tmpllist)
version		SUNW_1.1
end		

function	ldap_first_entry
include		<lber.h>, <ldap.h>
declaration	LDAPMessage *ldap_first_entry(LDAP *ld, LDAPMessage *res)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_first_message
include		<lber.h>, <ldap.h>
declaration	LDAPMessage *ldap_first_message(LDAP *ld, LDAPMessage *res)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_first_reference
include		<lber.h>, <ldap.h>
declaration	LDAPMessage *ldap_first_reference(LDAP *ld, LDAPMessage *res)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_first_searchobj
include		<lber.h>, <ldap.h>
declaration	struct ldap_searchobj *ldap_first_searchobj \
			(struct ldap_searchobj *solist) 
version		SUNW_1.1
end		

function	ldap_first_tmplcol
include		<lber.h>, <ldap.h>
declaration	struct ldap_tmplitem *ldap_first_tmplcol \
			(struct ldap_disptmpl *tmpl, \
			struct ldap_tmplitem *row)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_first_tmplrow
include		<lber.h>, <ldap.h>
declaration	struct ldap_tmplitem *ldap_first_tmplrow \
			(struct ldap_disptmpl *tmpl)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_flush_cache
include		<lber.h>, <ldap.h>
declaration	void ldap_flush_cache(LDAP *ld) 
version		SUNW_1.1
end		

function	ldap_free_friendlymap
include		<lber.h>, <ldap.h>
declaration	void ldap_free_friendlymap(FriendlyMap **map) 
version		SUNW_1.1
end		

function	ldap_free_searchprefs
include		<lber.h>, <ldap.h>
declaration	void ldap_free_searchprefs(struct ldap_searchobj *solist) 
version		SUNW_1.1
end		

function	ldap_free_templates
include		<lber.h>, <ldap.h>
declaration	void ldap_free_templates(struct ldap_disptmpl *tmpllist) 
version		SUNW_1.1
end		

function	ldap_free_urldesc
include		<lber.h>, <ldap.h>
declaration	void ldap_free_urldesc(LDAPURLDesc *ludp) 
version		SUNW_1.1
end		

function	ldap_friendly_name
include		<lber.h>, <ldap.h>
declaration	char *ldap_friendly_name(char *filename, char *uname, \
			FriendlyMap **map)
version		SUNW_1.1
end		

function	ldap_get_dn
include		<lber.h>, <ldap.h>
declaration	char *ldap_get_dn(LDAP *ld, LDAPMessage *entry)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_get_option
include		<lber.h>, <ldap.h>
declaration	int ldap_get_option (LDAP *ld, int option, void *outvalue)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_get_reference_urls
include		<lber.h>, <ldap.h>
declaration	char **ldap_get_reference_urls(LDAP *ld, LDAPMessage *res)
version		SUNWprivate_1.1
exception	$return == NULL
end		

function	ldap_get_values
include		<lber.h>, <ldap.h>
declaration	char **ldap_get_values(LDAP *ld, LDAPMessage *entry, \
			char *target)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_get_values_len
include		<lber.h>, <ldap.h>
declaration	struct berval **ldap_get_values_len(LDAP *ld, \
			LDAPMessage *entry, char *target)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_getfilter_free
include		<lber.h>, <ldap.h>
declaration	void ldap_getfilter_free(LDAPFiltDesc *lfdp) 
version		SUNW_1.1
end		

function	ldap_getfirstfilter
include		<lber.h>, <ldap.h>
declaration	LDAPFiltInfo *ldap_getfirstfilter(LDAPFiltDesc *lfdp, \
			char *tagpat, char *value)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_getnextfilter
include		<lber.h>, <ldap.h>
declaration	LDAPFiltInfo *ldap_getnextfilter(LDAPFiltDesc *lfdp)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_init
include		<lber.h>, <ldap.h>
declaration	LDAP *ldap_init(char *defhost, int defport)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_init_getfilter
include		<lber.h>, <ldap.h>
declaration	LDAPFiltDesc *ldap_init_getfilter(char *fname)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_init_getfilter_buf
include		<lber.h>, <ldap.h>
declaration	LDAPFiltDesc *ldap_init_getfilter_buf(char *buf, \
			ssize_t buflen)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_init_searchprefs
include		<lber.h>, <ldap.h>
declaration	int ldap_init_searchprefs(char *file, \
			struct ldap_searchobj **solistp)
version		SUNW_1.1
exception	$return == (int) NULLSEARCHOBJ
end		

function	ldap_init_searchprefs_buf
include		<lber.h>, <ldap.h>
declaration	int ldap_init_searchprefs_buf(char *buf, ssize_t buflen, \
			struct ldap_searchobj **solistp)
version		SUNW_1.1
exception	$return == (int) NULLSEARCHOBJ
end		

function	ldap_init_templates
include		<lber.h>, <ldap.h>
declaration	int ldap_init_templates(char *file, \
			struct ldap_disptmpl **tmpllistp)
version		SUNW_1.1
end		

function	ldap_init_templates_buf
include		<lber.h>, <ldap.h>
declaration	int ldap_init_templates_buf(char *buf, ssize_t buflen, \
			struct ldap_disptmpl **tmpllistp)
version		SUNW_1.1
end		

function	ldap_is_dns_dn
include		<lber.h>, <ldap.h>
declaration	int ldap_is_dns_dn(char *dn)
version		SUNW_1.1
exception	$return == 0
end		

function	ldap_is_ldap_url
include		<lber.h>, <ldap.h>
declaration	int ldap_is_ldap_url(char *url)
version		SUNW_1.1
exception	$return == 0
end		

function	ldap_memfree
include		<lber.h>, <ldap.h>
declaration	void ldap_memfree(char *mem) 
version		SUNW_1.1
end		

function	ldap_modify
include		<lber.h>, <ldap.h>
declaration	int ldap_modify(LDAP *ld, char *dn, LDAPMod **mods)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_modify_ext
include		<lber.h>, <ldap.h>
declaration	int ldap_modify_ext(LDAP *ld, char *dn, LDAPMod **mods, \
			LDAPControl **serverctrls, \
			LDAPControl **clientctrls, int *msgidp)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_modify_ext_s
include		<lber.h>, <ldap.h>
declaration	int ldap_modify_ext_s(LDAP *ld, char *dn, LDAPMod **mods, \
			LDAPControl **serverctrls, LDAPControl **clientctrls)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_modify_s
include		<lber.h>, <ldap.h>
declaration	int ldap_modify_s(LDAP *ld, char *dn, LDAPMod **mods)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_modrdn
include		<lber.h>, <ldap.h>
declaration	int ldap_modrdn(LDAP *ld, char *dn, char *newrdn, \
			int deleteoldrdn)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_modrdn_s
include		<lber.h>, <ldap.h>
declaration	int ldap_modrdn_s(LDAP *ld, char *dn, char *newrdn, \
			int deleteoldrdn)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_mods_free
include		<lber.h>, <ldap.h>
declaration	void ldap_mods_free(LDAPMod **mods, int freemods) 
version		SUNW_1.1
end		

function	ldap_msgfree
include		<lber.h>, <ldap.h>
declaration	int ldap_msgfree(LDAPMessage *lm) 
version		SUNW_1.1
end		

function	ldap_msgid
include		<lber.h>, <ldap.h>
declaration	int ldap_msgid(LDAPMessage *res)
version		SUNW_1.1
exception	$return == LDAP_RES_ANY
end		

function	ldap_msgtype
include		<lber.h>, <ldap.h>
declaration	int ldap_msgtype(LDAPMessage *res)
version		SUNW_1.1
exception	$return == LDAP_RES_ANY
end		

function	ldap_next_attribute
include		<lber.h>, <ldap.h>
declaration	char *ldap_next_attribute(LDAP *ld, LDAPMessage *entry, \
			BerElement *ber)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_next_disptmpl
include		<lber.h>, <ldap.h>
declaration	struct ldap_disptmpl *ldap_next_disptmpl \
			(struct ldap_disptmpl *tmpllist, \
			struct ldap_disptmpl *tmpl)
version		SUNW_1.1
exception	$return == NULLDISPTMPL
end		

function	ldap_next_entry
include		<lber.h>, <ldap.h>
declaration	LDAPMessage *ldap_next_entry(LDAP *ld, LDAPMessage *entry)
version		SUNW_1.1
exception	$return == NULLMSG
end		

function	ldap_next_message
include		<lber.h>, <ldap.h>
declaration	LDAPMessage *ldap_next_message(LDAP *ld, LDAPMessage *msg)
version		SUNW_1.1
exception	$return == NULLMSG
end		

function	ldap_next_reference
include		<lber.h>, <ldap.h>
declaration	LDAPMessage *ldap_next_reference(LDAP *ld, LDAPMessage *entry)
version		SUNW_1.1
exception	$return == NULLMSG
end		

function	ldap_next_searchobj
include		<lber.h>, <ldap.h>
declaration	struct ldap_searchobj *ldap_next_searchobj \
			(struct ldap_searchobj *solist, \
			struct ldap_searchobj *so)
version		SUNW_1.1
exception	$return == NULLSEARCHOBJ
end		

function	ldap_next_tmplcol
include		<lber.h>, <ldap.h>
declaration	struct ldap_tmplitem *ldap_next_tmplcol \
			(struct ldap_disptmpl *tmpl, \
			struct ldap_tmplitem *row, \
			struct ldap_tmplitem *col)
version		SUNW_1.1
exception	$return == NULLTMPLITEM
end		

function	ldap_next_tmplrow
include		<lber.h>, <ldap.h>
declaration	struct ldap_tmplitem *ldap_next_tmplrow \
			(struct ldap_disptmpl *tmpl, \
			struct ldap_tmplitem *row)
version		SUNW_1.1
exception	$return == NULLTMPLITEM
end		

function	ldap_oc2template
include		<lber.h>, <ldap.h>
declaration	struct ldap_disptmpl *ldap_oc2template(char **oclist, \
			struct ldap_disptmpl *tmpllist)
version		SUNW_1.1
exception	$return == NULLDISPTMPL
end		

function	ldap_open
include		<lber.h>, <ldap.h>
declaration	LDAP *ldap_open(char *host, int port)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_parse_extended_result
include		<lber.h>, <ldap.h>
declaration	int ldap_parse_extended_result(LDAP *ld, LDAPMessage *res, \
			char **resultoidp, struct berval **resultdata, \
			int freeit)
version		SUNW_1.1
end		

function	ldap_parse_page_control
include		<lber.h>, <ldap.h>
declaration	int ldap_parse_page_control(LDAP *ld, \
			LDAPControl **controls, unsigned int *totalcount, \
			struct berval **cookie)
version		SUNWprivate_1.1
end		

function	ldap_parse_result
include		<lber.h>, <ldap.h>
declaration	int ldap_parse_result(LDAP *ld, LDAPMessage *res, \
			int *errcodep, char **matcheddnp, char **errmsgp, \
			char ***referralsp, LDAPControl ***serverctrlsp, \
			int freeit)
version		SUNW_1.1
end		

function	ldap_parse_sasl_bind_result
include		<lber.h>, <ldap.h>
declaration	int ldap_parse_sasl_bind_result(LDAP *ld, LDAPMessage *res, \
			struct berval **servercredp, int freeit)
version		SUNW_1.1
end		

function	ldap_perror
include		<lber.h>, <ldap.h>
declaration	void ldap_perror(LDAP *ld, char *s) 
version		SUNW_1.1
end		

function	ldap_rename
include		<lber.h>, <ldap.h>
declaration	int ldap_rename(LDAP *ld, char *dn, char *newrdn, \
			char *newparent, int deleteoldrdn, \
			LDAPControl **serverctrls, \
			LDAPControl **clientctrls, int *msgidp)
version		SUNW_1.1
end		

function	ldap_rename_s
include		<lber.h>, <ldap.h>
declaration	int ldap_rename_s(LDAP *ld, char *dn, char *newrdn, \
			char *newparent, int deleteoldrdn, \
			LDAPControl **serverctrls, LDAPControl **clientctrls)
version		SUNW_1.1
end		

function	ldap_result2error
include		<lber.h>, <ldap.h>
declaration	int ldap_result2error(LDAP *ld, LDAPMessage *r, int freeit)
version		SUNW_1.1
end		

function	ldap_result
include		<lber.h>, <ldap.h>
declaration	int ldap_result(LDAP *ld, int msgid, int all, \
			struct timeval *timeout, LDAPMessage **result)
version		SUNW_1.1
end		

function	ldap_sasl_bind
include		<lber.h>, <ldap.h>
declaration	int ldap_sasl_bind(LDAP *ld, char *dn, char *mechanism, \
			struct berval *cred, LDAPControl **serverctrls, \
			LDAPControl **clientctrls, int *msgidp)
version		SUNW_1.1
end		

function	ldap_sasl_bind_s
include		<lber.h>, <ldap.h>
declaration	int ldap_sasl_bind_s(LDAP *ld, char *dn, char *mechanism, \
			struct berval *cred, LDAPControl **serverctrls, \
			LDAPControl **clientctrls, struct berval **servercredp)
version		SUNW_1.1
end		

function	ldap_sasl_cram_md5_bind_s
include		<lber.h>, <ldap.h>
declaration	int ldap_sasl_cram_md5_bind_s(LDAP *ld, char *dn, \
			struct berval *cred, LDAPControl **serverctrls, \
			LDAPControl **clientctrls)
version		SUNW_1.1
end		

function	ldap_search
include		<lber.h>, <ldap.h>
declaration	int ldap_search(LDAP *ld, char *base, int scope, \
			char *filter, char **attrs, int attrsonly)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_search_ext
include		<lber.h>, <ldap.h>
declaration	int ldap_search_ext(LDAP *ld, char *base, int scope, \
			char *filter, char **attrs, int attrsonly, \
			LDAPControl **serverctrls, LDAPControl **clientctrls, \
			struct timeval *timeoutp, int sizelimit, int *msgidp)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_search_ext_s
include		<lber.h>, <ldap.h>
declaration	int ldap_search_ext_s(LDAP *ld, char *base, int scope, \
			char *filter, char **attrs, int attrsonly, \
			LDAPControl **serverctrls, \
			LDAPControl **clientctrls, struct timeval *timeoutp, \
			int sizelimit, LDAPMessage **res)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_search_s
include		<lber.h>, <ldap.h>
declaration	int ldap_search_s(LDAP *ld, char *base, int scope, \
			char *filter, char **attrs, int attrsonly, \
			LDAPMessage **res)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_search_st
include		<lber.h>, <ldap.h>
declaration	int ldap_search_st(LDAP *ld, char *base, int scope, \
			char *filter, char **attrs, int attrsonly, \
			struct timeval *timeout, LDAPMessage **res)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_set_cache_options
include		<lber.h>, <ldap.h>
declaration	void ldap_set_cache_options(LDAP *ld, unsigned int opts) 
version		SUNW_1.1
end		

function	ldap_set_option
include		<lber.h>, <ldap.h>
declaration	int ldap_set_option (LDAP *ld, int option, void *invalue) 
version		SUNW_1.1
end		

function	ldap_set_rebind_proc
include		<lber.h>, <ldap.h>
declaration	void ldap_set_rebind_proc(LDAP *ld, \
			LDAP_REBIND_FUNCTION *rebindproc, void *extra_arg) 
version		SUNW_1.1
end		

function	ldap_set_string_translators
include		<lber.h>, <ldap.h>
declaration	void ldap_set_string_translators(LDAP *ld, \
			BERTranslateProc encode_proc, \
			BERTranslateProc decode_proc)
version		SUNW_1.1
end		

function	ldap_setfilteraffixes
include		<lber.h>, <ldap.h>
declaration	void ldap_setfilteraffixes(LDAPFiltDesc *lfdp, \
			char *prefix, char *suffix) 
version		SUNW_1.1
end		

function	ldap_simple_bind
include		<lber.h>, <ldap.h>
declaration	int ldap_simple_bind(LDAP *ld, char *dn, char *passwd)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_simple_bind_s
include		<lber.h>, <ldap.h>
declaration	int ldap_simple_bind_s(LDAP *ld, char *dn, char *passwd)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_sort_entries
include		<lber.h>, <ldap.h>
declaration	int ldap_sort_entries(LDAP *ld, LDAPMessage **chain, \
			char *attr, int (*cmp)())
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_sort_strcasecmp
include		<lber.h>, <ldap.h>
declaration	int ldap_sort_strcasecmp(char **a, char **b)
version		SUNW_1.1
end		

function	ldap_sort_values
include		<lber.h>, <ldap.h>
declaration	int ldap_sort_values(LDAP *ld, char **vals, int (*cmp)())
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_tmplattrs
include		<lber.h>, <ldap.h>
declaration	char **ldap_tmplattrs(struct ldap_disptmpl *tmpl, \
			char **includeattrs, int exclude, \
			unsigned int syntaxmask)
version		SUNW_1.1
exception	$return == NULL
end		

function	ldap_translate_from_t61
include		<lber.h>, <ldap.h>
declaration	int ldap_translate_from_t61(LDAP *ld, char **bufp, \
			unsigned int *lenp, int free_input)
version		SUNW_1.1
end		

function	ldap_translate_to_t61
include		<lber.h>, <ldap.h>
declaration	int ldap_translate_to_t61(LDAP *ld, char **bufp, \
			unsigned int *lenp, int free_input)
version		SUNW_1.1
end		

function	ldap_ufn_search_c
include		<lber.h>, <ldap.h>, "ufn.h"
declaration	int ldap_ufn_search_c(LDAP *ld, char *ufn, char **attrs, \
			int attrsonly, LDAPMessage **res, \
			cancelptype cancelproc, void *cancelparm)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_ufn_search_ct
include		<lber.h>, <ldap.h>, "ufn.h"
declaration	int ldap_ufn_search_ct(LDAP *ld, char *ufn, char **attrs, \
			int attrsonly, LDAPMessage **res, \
			cancelptype cancelproc, void *cancelparm, \
			char *tag1, char *tag2, char *tag3)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_ufn_search_s
include		<lber.h>, <ldap.h>
declaration	int ldap_ufn_search_s(LDAP *ld, char *ufn, char **attrs, \
			int attrsonly, LDAPMessage **res)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_ufn_setfilter
include		<lber.h>, <ldap.h>
declaration	LDAPFiltDesc *ldap_ufn_setfilter(LDAP *ld, char *fname) 
version		SUNW_1.1
end		

function	ldap_ufn_setprefix
include		<lber.h>, <ldap.h>
declaration	void ldap_ufn_setprefix(LDAP *ld, char *prefix) 
version		SUNW_1.1
end		

function	ldap_ufn_timeout
include		<lber.h>, <ldap.h>
declaration	int ldap_ufn_timeout(void *tvparam)
version		SUNW_1.1
exception	$return == 0
end		

function	ldap_unbind
include		<lber.h>, <ldap.h>
declaration	int ldap_unbind(LDAP *ld)
version		SUNW_1.1
exception	$return == 0
end		

function	ldap_unbind_s
include		<lber.h>, <ldap.h>
declaration	int ldap_unbind_s(LDAP *ld)
version		SUNW_1.1
exception	$return == 0
end		

function	ldap_uncache_entry
include		<lber.h>, <ldap.h>
declaration	void ldap_uncache_entry(LDAP *ld, char *dn) 
version		SUNW_1.1
end		

function	ldap_uncache_request
include		<lber.h>, <ldap.h>
declaration	void ldap_uncache_request(LDAP *ld, int msgid) 
version		SUNW_1.1
end		

function	ldap_url_parse
include		<lber.h>, <ldap.h>
declaration	int ldap_url_parse(char *url, LDAPURLDesc **ludpp)
version		SUNW_1.1
end		

function	ldap_url_search
include		<lber.h>, <ldap.h>
declaration	int ldap_url_search(LDAP *ld, char *url, int attrsonly)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_url_search_s
include		<lber.h>, <ldap.h>
declaration	int ldap_url_search_s(LDAP *ld, char *url, int attrsonly, \
			LDAPMessage **res)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_url_search_st
include		<lber.h>, <ldap.h>
declaration	int ldap_url_search_st(LDAP *ld, char *url, int attrsonly, \
			struct timeval *timeout, LDAPMessage **res)
version		SUNW_1.1
exception	$return == -1
end		

function	ldap_vals2html
include		<lber.h>, <ldap.h>
declaration	int ldap_vals2html(LDAP *ld, char *buf, char **vals, \
			char *label, int labelwidth, unsigned int syntaxid, \
			writeptype writeproc, void *writeparm, char *eol, \
			int rdncount, char *urlprefix)
version		SUNW_1.1
end		

function	ldap_vals2text
include		<lber.h>, <ldap.h>
declaration	int ldap_vals2text(LDAP *ld, char *buf, char **vals, \
			char *label, int labelwidth, \
			unsigned int syntaxid, writeptype writeproc, \
			void *writeparm, char *eol, int rdncount)
version		SUNW_1.1
end		

function	ldap_value_free
include		<lber.h>, <ldap.h>
declaration	void ldap_value_free(char **vals) 
version		SUNW_1.1
end		

function	ldap_value_free_len
include		<lber.h>, <ldap.h>
declaration	void ldap_value_free_len(struct berval **vals) 
version		SUNW_1.1
end		

function	ldaplogconfigf
include		<lber.h>, <ldap.h>
declaration	void ldaplogconfigf(FILE *fd) 
version		SUNWprivate_1.1
end		

function	ldif_type_and_value
include		<lber.h>, <ldap.h>
declaration	char *ldif_type_and_value(char *type, char *val, int vlen)
version		SUNWprivate_1.1
exception	$return == NULL
end		

function	open_default_ldap_connection
include		<lber.h>, <ldap.h>
declaration	int open_default_ldap_connection(LDAP *ld)
version		SUNW_1.1
end		

function	set_ber_options
include		<lber.h>, <ldap.h>
declaration	void set_ber_options(LDAP *ld, BerElement *ber) 
version		SUNW_1.1
end		

data		slapdcat
include		<lber.h>, <ldap.h>
version		SUNWprivate_1.1
end		

function	str_getline
include		<lber.h>, <ldap.h>
declaration	char *str_getline(char **next)
version		SUNWprivate_1.1
exception	$return == NULL
end		

function	str_parse_line
include		<lber.h>, <ldap.h>
declaration	int str_parse_line(char *line, char **type, \
			char **value, int *vlen)
version		SUNWprivate_1.1
exception	$return == -1
end		

function	ldap_create_sort_control
include		<lber.h>, <ldap.h>
declaration	int ldap_create_sort_control (LDAP *ld, \
			LDAPsortkey **sortKeyList, const char ctl_iscritical, \
			LDAPControl **ctrlp);
version		SUNW_1.1
end		

function	ldap_parse_sort_control
include		<lber.h>, <ldap.h>
declaration	int ldap_parse_sort_control(LDAP *ld, LDAPControl **ctrlp, \
			unsigned long *result, char **attribute);
version		SUNW_1.1
end		

function	ldap_create_sort_keylist
include		<lber.h>, <ldap.h>
declaration	int ldap_create_sort_keylist(LDAPsortkey ***sortKeyList, \
			char *string_rep);
version		SUNW_1.1
end		

function	ldap_free_sort_keylist
include		<lber.h>, <ldap.h>
declaration	void ldap_free_sort_keylist(LDAPsortkey **sortKeyList);
version		SUNW_1.1
end		

function	ldap_create_virtuallist_control
include		<lber.h>, <ldap.h>
declaration	int ldap_create_virtuallist_control(LDAP *ld, \
			LDAPVirtualList *ldvlistp, LDAPControl **ctrlp);
version		SUNW_1.1
end		

function	ldap_parse_virtuallist_control
include		<lber.h>, <ldap.h>
declaration	int ldap_parse_virtuallist_control(LDAP *ld, \
			LDAPControl **ctrls, unsigned long *target_posp, \
			unsigned long *list_sizep, int *errcodep);
version		SUNW_1.1
end