Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ingo Voss
OpenLDAP
Commits
cdeda340
Commit
cdeda340
authored
Mar 12, 2004
by
Howard Chu
Browse files
Add c_conn_idx, to simplify external modules managing per-connection state
parent
95459fef
Changes
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/connection.c
View file @
cdeda340
...
@@ -92,6 +92,8 @@ static ldap_pvt_thread_start_t connection_operation;
...
@@ -92,6 +92,8 @@ static ldap_pvt_thread_start_t connection_operation;
*/
*/
int
connections_init
(
void
)
int
connections_init
(
void
)
{
{
int
i
;
assert
(
connections
==
NULL
);
assert
(
connections
==
NULL
);
if
(
connections
!=
NULL
)
{
if
(
connections
!=
NULL
)
{
...
@@ -126,6 +128,8 @@ int connections_init(void)
...
@@ -126,6 +128,8 @@ int connections_init(void)
assert
(
connections
[
0
].
c_struct_state
==
SLAP_C_UNINITIALIZED
);
assert
(
connections
[
0
].
c_struct_state
==
SLAP_C_UNINITIALIZED
);
assert
(
connections
[
dtblsize
-
1
].
c_struct_state
==
SLAP_C_UNINITIALIZED
);
assert
(
connections
[
dtblsize
-
1
].
c_struct_state
==
SLAP_C_UNINITIALIZED
);
for
(
i
=
0
;
i
<
dtblsize
;
i
++
)
connections
[
i
].
c_conn_idx
=
i
;
/*
/*
* per entry initialization of the Connection array initialization
* per entry initialization of the Connection array initialization
* will be done by connection_init()
* will be done by connection_init()
...
...
servers/slapd/slap.h
View file @
cdeda340
...
@@ -2148,6 +2148,7 @@ typedef struct slap_listener Listener;
...
@@ -2148,6 +2148,7 @@ typedef struct slap_listener Listener;
typedef
struct
slap_conn
{
typedef
struct
slap_conn
{
int
c_struct_state
;
/* structure management state */
int
c_struct_state
;
/* structure management state */
int
c_conn_state
;
/* connection state */
int
c_conn_state
;
/* connection state */
int
c_conn_idx
;
/* slot in connections array */
ldap_pvt_thread_mutex_t
c_mutex
;
/* protect the connection */
ldap_pvt_thread_mutex_t
c_mutex
;
/* protect the connection */
Sockbuf
*
c_sb
;
/* ber connection stuff */
Sockbuf
*
c_sb
;
/* ber connection stuff */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment