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
François Kooman
OpenLDAP
Commits
1f635b8b
Commit
1f635b8b
authored
18 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
ITS
#4707
added new ldap_init_fd() API
parent
2bdc0819
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/ldap_pvt.h
+3
-0
3 additions, 0 deletions
include/ldap_pvt.h
libraries/libldap/open.c
+89
-0
89 additions, 0 deletions
libraries/libldap/open.c
with
92 additions
and
0 deletions
include/ldap_pvt.h
+
3
−
0
View file @
1f635b8b
...
...
@@ -27,6 +27,7 @@ LDAP_BEGIN_DECL
#define LDAP_PROTO_TCP 1
/* ldap:// */
#define LDAP_PROTO_UDP 2
/* reserved */
#define LDAP_PROTO_IPC 3
/* ldapi:// */
#define LDAP_PROTO_EXT 4
/* user-defined socket/sockbuf */
LDAP_F
(
int
)
ldap_pvt_url_scheme2proto
LDAP_P
((
...
...
@@ -236,6 +237,8 @@ ldap_get_message_ber LDAP_P((
/* open */
LDAP_F
(
int
)
ldap_open_internal_connection
LDAP_P
((
struct
ldap
**
ldp
,
ber_socket_t
*
fdp
));
LDAP_F
(
int
)
ldap_init_fd
LDAP_P
((
ber_socket_t
fd
,
int
proto
,
LDAP_CONST
char
*
url
,
struct
ldap
**
ldp
));
/* search.c */
LDAP_F
(
int
)
ldap_pvt_put_filter
LDAP_P
((
...
...
This diff is collapsed.
Click to expand it.
libraries/libldap/open.c
+
89
−
0
View file @
1f635b8b
...
...
@@ -239,6 +239,95 @@ ldap_initialize( LDAP **ldp, LDAP_CONST char *url )
return
LDAP_SUCCESS
;
}
int
ldap_init_fd
(
ber_socket_t
fd
,
int
proto
,
LDAP_CONST
char
*
url
,
LDAP
**
ldp
)
{
int
rc
;
LDAP
*
ld
;
LDAPConn
*
conn
;
*
ldp
=
NULL
;
rc
=
ldap_create
(
&
ld
);
if
(
rc
!=
LDAP_SUCCESS
)
return
(
rc
);
if
(
url
!=
NULL
)
{
rc
=
ldap_set_option
(
ld
,
LDAP_OPT_URI
,
url
);
if
(
rc
!=
LDAP_SUCCESS
)
{
ldap_ld_free
(
ld
,
1
,
NULL
,
NULL
);
return
rc
;
}
}
/* Attach the passed socket as the LDAP's connection */
conn
=
ldap_new_connection
(
ld
,
NULL
,
1
,
0
,
NULL
);
if
(
conn
==
NULL
)
{
ldap_unbind_ext
(
ld
,
NULL
,
NULL
);
return
(
LDAP_NO_MEMORY
);
}
ber_sockbuf_ctrl
(
conn
->
lconn_sb
,
LBER_SB_OPT_SET_FD
,
&
fd
);
ld
->
ld_defconn
=
conn
;
++
ld
->
ld_defconn
->
lconn_refcnt
;
/* so it never gets closed/freed */
switch
(
proto
)
{
case
LDAP_PROTO_TCP
:
#ifdef LDAP_DEBUG
ber_sockbuf_add_io
(
conn
->
lconn_sb
,
&
ber_sockbuf_io_debug
,
LBER_SBIOD_LEVEL_PROVIDER
,
(
void
*
)
"tcp_"
);
#endif
ber_sockbuf_add_io
(
conn
->
lconn_sb
,
&
ber_sockbuf_io_tcp
,
LBER_SBIOD_LEVEL_PROVIDER
,
NULL
);
break
;
#ifdef LDAP_CONNECTIONLESS
case
LDAP_PROTO_UDP
:
#ifdef LDAP_DEBUG
ber_sockbuf_add_io
(
conn
->
lconn_sb
,
&
ber_sockbuf_io_debug
,
LBER_SBIOD_LEVEL_PROVIDER
,
(
void
*
)
"udp_"
);
#endif
ber_sockbuf_add_io
(
conn
->
lconn_sb
,
&
ber_sockbuf_io_udp
,
LBER_SBIOD_LEVEL_PROVIDER
,
NULL
);
ber_sockbuf_add_io
(
conn
->
lconn_sb
,
&
ber_sockbuf_io_readahead
,
LBER_SBIOD_LEVEL_PROVIDER
,
NULL
);
break
;
#endif
/* LDAP_CONNECTIONLESS */
case
LDAP_PROTO_IPC
:
#ifdef LDAP_DEBUG
ber_sockbuf_add_io
(
conn
->
lconn_sb
,
&
ber_sockbuf_io_debug
,
LBER_SBIOD_LEVEL_PROVIDER
,
(
void
*
)
"ipc_"
);
#endif
ber_sockbuf_add_io
(
conn
->
lconn_sb
,
&
ber_sockbuf_io_fd
,
LBER_SBIOD_LEVEL_PROVIDER
,
NULL
);
break
;
case
LDAP_PROTO_EXT
:
/* caller must supply sockbuf handlers */
break
;
default:
ldap_unbind_ext
(
ld
,
NULL
,
NULL
);
return
LDAP_PARAM_ERROR
;
}
#ifdef LDAP_DEBUG
ber_sockbuf_add_io
(
conn
->
lconn_sb
,
&
ber_sockbuf_io_debug
,
INT_MAX
,
(
void
*
)
"ldap_"
);
#endif
/* Add the connection to the *LDAP's select pool */
ldap_mark_select_read
(
ld
,
conn
->
lconn_sb
);
ldap_mark_select_write
(
ld
,
conn
->
lconn_sb
);
*
ldp
=
ld
;
return
LDAP_SUCCESS
;
}
int
ldap_int_open_connection
(
LDAP
*
ld
,
...
...
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