]> git.sur5r.net Git - openldap/blob - libraries/libldap/extended.c
s/<stdlib.h>/<ac/stdlib.h>/
[openldap] / libraries / libldap / extended.c
1 /*
2  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5
6 #include "portable.h"
7
8 #include <stdio.h>
9 #include <ac/stdlib.h>
10
11 #include <ac/socket.h>
12 #include <ac/string.h>
13 #include <ac/time.h>
14
15 #include "ldap-int.h"
16
17 int
18 ldap_extended_operation(
19         LDAP                    *ld,
20         LDAP_CONST char *exoid,
21         struct berval   *exdata,
22         LDAPControl             **sctrls,
23         LDAPControl             **cctrls,
24         int                             *msgidp )
25 {
26         Debug( LDAP_DEBUG_TRACE, "ldap_extended_operation\n", 0, 0, 0 );
27         return LDAP_NOT_SUPPORTED;
28 }
29
30 int
31 ldap_extended_operation_s(
32         LDAP                    *ld,
33         LDAP_CONST char *exoid,
34         struct berval   *exdata,
35         LDAPControl             **sctrls,
36         LDAPControl             **cctrls,
37         char                    **retoidp,
38         struct berval   **retdatap )
39 {
40         Debug( LDAP_DEBUG_TRACE, "ldap_extended_operation_s\n", 0, 0, 0 );
41         return LDAP_NOT_SUPPORTED;
42 }
43