Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
c581055b
Commit
c581055b
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Add skeleton ldap_extended_operation routines.
parent
95b3c92d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libraries/libldap/Makefile.in
+2
-2
2 additions, 2 deletions
libraries/libldap/Makefile.in
libraries/libldap/extended.c
+43
-0
43 additions, 0 deletions
libraries/libldap/extended.c
libraries/libldap_r/Makefile.in
+3
-2
3 additions, 2 deletions
libraries/libldap_r/Makefile.in
with
48 additions
and
4 deletions
libraries/libldap/Makefile.in
+
2
−
2
View file @
c581055b
...
...
@@ -9,7 +9,7 @@ XLIBRARY = ../libldap.a
PROGRAMS
=
apitest ltest ttest
SRCS
=
bind.c open.c result.c error.c compare.c search.c
\
controls.c messages.c references.c
\
controls.c messages.c references.c
extended.c
\
modify.c add.c modrdn.c delete.c abandon.c ufn.c cache.c
\
getfilter.c sbind.c kbind.c unbind.c friendly.c cldap.c
\
free.c disptmpl.c srchpref.c dsparse.c tmplout.c sort.c
\
...
...
@@ -17,7 +17,7 @@ SRCS = bind.c open.c result.c error.c compare.c search.c \
request.c getdxbyname.c os-ip.c url.c charset.c
\
init.c options.c print.c string.c util-int.c schema.c
OBJS
=
bind.lo open.lo result.lo error.lo compare.lo search.lo
\
controls.lo messages.lo references.lo
\
controls.lo messages.lo references.lo
extended.lo
\
modify.lo add.lo modrdn.lo delete.lo abandon.lo ufn.lo cache.lo
\
getfilter.lo sbind.lo kbind.lo unbind.lo friendly.lo cldap.lo
\
free.lo disptmpl.lo srchpref.lo dsparse.lo tmplout.lo sort.lo
\
...
...
This diff is collapsed.
Click to expand it.
libraries/libldap/extended.c
0 → 100644
+
43
−
0
View file @
c581055b
/*
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include
"portable.h"
#include
<stdio.h>
#include
<stdlib.h>
#include
<ac/socket.h>
#include
<ac/string.h>
#include
<ac/time.h>
#include
"ldap-int.h"
int
ldap_extended_operation
(
LDAP
*
ld
,
LDAP_CONST
char
*
exoid
,
struct
berval
*
exdata
,
LDAPControl
**
sctrls
,
LDAPControl
**
cctrls
,
int
*
msgidp
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"ldap_extended_operation
\n
"
,
0
,
0
,
0
);
return
LDAP_NOT_SUPPORTED
;
}
int
ldap_extended_operation_s
(
LDAP
*
ld
,
LDAP_CONST
char
*
exoid
,
struct
berval
*
exdata
,
LDAPControl
**
sctrls
,
LDAPControl
**
cctrls
,
char
**
retoidp
,
struct
berval
**
retdatap
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"ldap_extended_operation_s
\n
"
,
0
,
0
,
0
);
return
LDAP_NOT_SUPPORTED
;
}
This diff is collapsed.
Click to expand it.
libraries/libldap_r/Makefile.in
+
3
−
2
View file @
c581055b
...
...
@@ -7,7 +7,7 @@ XLIBRARY = ../libldap_r.a
PROGRAMS
=
apitest ltest ttest
XXDIR
=
$(
srcdir
)
/../libldap
XXSRCS
=
apitest.c test.c tmpltest.c
\
XXSRCS
=
apitest.c test.c tmpltest.c
extended.c
\
bind.c controls.c open.c result.c error.c compare.c search.c
\
modify.c add.c modrdn.c delete.c abandon.c ufn.c cache.c
\
getfilter.c sbind.c kbind.c unbind.c friendly.c cldap.c
\
...
...
@@ -17,7 +17,8 @@ XXSRCS = apitest.c test.c tmpltest.c \
init.c options.c print.c string.c util-int.c schema.c
SRCS
=
thr_posix.c thr_cthreads.c thr_thr.c thr_lwp.c thr_nt.c
\
thr_sleep.c thr_stub.c rdwr.c
OBJS
=
bind.lo controls.lo open.lo result.lo error.lo compare.lo search.lo
\
OBJS
=
extended.lo
\
bind.lo controls.lo open.lo result.lo error.lo compare.lo search.lo
\
modify.lo add.lo modrdn.lo delete.lo abandon.lo ufn.lo cache.lo
\
getfilter.lo sbind.lo kbind.lo unbind.lo friendly.lo cldap.lo
\
free.lo disptmpl.lo srchpref.lo dsparse.lo tmplout.lo sort.lo
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment