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
openldap
OpenLDAP
Commits
883196d3
Commit
883196d3
authored
Dec 24, 2001
by
Kurt Zeilenga
Browse files
Clean up some symbol scoping
parent
04ea760a
Changes
12
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/ldap-int.h
View file @
883196d3
...
...
@@ -437,7 +437,7 @@ LDAP_F (char *) ldap_host_connected_to( Sockbuf *sb );
#endif
LDAP_F
(
void
)
ldap_int_ip_init
(
void
);
LDAP_F
(
int
)
do_
ldap_select
(
LDAP
*
ld
,
struct
timeval
*
timeout
);
LDAP_F
(
int
)
ldap_
int_
select
(
LDAP
*
ld
,
struct
timeval
*
timeout
);
LDAP_F
(
void
*
)
ldap_new_select_info
(
void
);
LDAP_F
(
void
)
ldap_free_select_info
(
void
*
sip
);
LDAP_F
(
void
)
ldap_mark_select_write
(
LDAP
*
ld
,
Sockbuf
*
sb
);
...
...
libraries/libldap/os-ip.c
View file @
883196d3
...
...
@@ -661,11 +661,11 @@ ldap_int_ip_init( void )
int
do_
ldap_select
(
LDAP
*
ld
,
struct
timeval
*
timeout
)
ldap_
int_
select
(
LDAP
*
ld
,
struct
timeval
*
timeout
)
{
struct
selectinfo
*
sip
;
Debug
(
LDAP_DEBUG_TRACE
,
"
do_
ldap_select
\n
"
,
0
,
0
,
0
);
Debug
(
LDAP_DEBUG_TRACE
,
"ldap_
int_
select
\n
"
,
0
,
0
,
0
);
if
(
ldap_int_tblsize
==
0
)
ldap_int_ip_init
();
...
...
libraries/libldap/result.c
View file @
883196d3
...
...
@@ -272,13 +272,13 @@ wait4msg(
}
if
(
lc
==
NULL
)
{
rc
=
do_
ldap_select
(
ld
,
tvp
);
rc
=
ldap_
int_
select
(
ld
,
tvp
);
#ifdef LDAP_DEBUG
if
(
rc
==
-
1
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"
do_
ldap_select returned -1: errno %d
\n
"
,
"ldap_
int_
select returned -1: errno %d
\n
"
,
errno
,
0
,
0
);
}
#endif
...
...
libraries/liblunicode/ure/urestubs.c
View file @
883196d3
...
...
@@ -49,7 +49,7 @@ ucs4_t _ure_tolower(ucs4_t c)
return
uctoupper
(
c
);
}
static
struct
maskmap
{
static
struct
uc
maskmap
{
unsigned
long
mask1
;
unsigned
long
mask2
;
}
masks
[
32
]
=
{
...
...
libraries/liblutil/ptest.c
View file @
883196d3
...
...
@@ -20,13 +20,11 @@
#include
"lutil.h"
// #define SLAP_AUTHPASSWD 1
/*
* Password Test Program
*/
char
*
hash
[]
=
{
static
char
*
hash
[]
=
{
#ifdef SLAP_AUTHPASSWD
"SHA1"
,
"MD5"
,
#else
...
...
servers/slapd/back-bdb/extended.c
View file @
883196d3
...
...
@@ -13,7 +13,7 @@
#include
"back-bdb.h"
#include
"external.h"
struct
exop
{
static
struct
exop
{
char
*
oid
;
SLAP_EXTENDED_FN
extended
;
}
exop_table
[]
=
{
...
...
servers/slapd/back-bdb/index.c
View file @
883196d3
...
...
@@ -17,7 +17,7 @@
#include
"lutil_hash.h"
static
char
presence_keyval
[
LUTIL_HASH_BYTES
]
=
{
0
,
0
,
0
,
1
};
struct
berval
presence_key
=
{
LUTIL_HASH_BYTES
,
presence_keyval
};
static
struct
berval
presence_key
=
{
LUTIL_HASH_BYTES
,
presence_keyval
};
static
slap_mask_t
index_mask
(
Backend
*
be
,
...
...
servers/slapd/backglue.c
View file @
883196d3
...
...
@@ -149,7 +149,7 @@ glue_back_db_close (
return
0
;
}
int
static
int
glue_back_db_destroy
(
BackendDB
*
be
)
...
...
@@ -172,7 +172,7 @@ typedef struct glue_state {
struct
berval
**
refs
;
}
glue_state
;
void
static
void
glue_back_response
(
Connection
*
conn
,
Operation
*
op
,
...
...
@@ -228,7 +228,7 @@ glue_back_response (
}
}
void
static
void
glue_back_sresult
(
Connection
*
c
,
Operation
*
op
,
...
...
@@ -247,7 +247,7 @@ glue_back_sresult (
NULL
,
NULL
,
NULL
,
ctrls
);
}
int
static
int
glue_back_search
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -364,7 +364,7 @@ done:
return
rc
;
}
int
static
int
glue_back_bind
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -392,7 +392,7 @@ glue_back_bind (
return
rc
;
}
int
static
int
glue_back_compare
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -417,7 +417,7 @@ glue_back_compare (
return
rc
;
}
int
static
int
glue_back_modify
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -442,7 +442,7 @@ glue_back_modify (
return
rc
;
}
int
static
int
glue_back_modrdn
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -469,7 +469,7 @@ glue_back_modrdn (
return
rc
;
}
int
static
int
glue_back_add
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -492,7 +492,7 @@ glue_back_add (
return
rc
;
}
int
static
int
glue_back_delete
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -516,7 +516,7 @@ glue_back_delete (
return
rc
;
}
int
static
int
glue_back_release_rw
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -539,7 +539,7 @@ glue_back_release_rw (
return
rc
;
}
int
static
int
glue_back_group
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -564,7 +564,7 @@ glue_back_group (
return
rc
;
}
int
static
int
glue_back_attribute
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -588,7 +588,7 @@ glue_back_attribute (
return
rc
;
}
int
static
int
glue_back_referrals
(
BackendDB
*
b0
,
Connection
*
conn
,
...
...
@@ -611,7 +611,7 @@ glue_back_referrals (
return
rc
;
}
int
static
int
glue_tool_entry_open
(
BackendDB
*
b0
,
int
mode
...
...
@@ -627,7 +627,7 @@ glue_tool_entry_open (
return
0
;
}
int
static
int
glue_tool_entry_close
(
BackendDB
*
b0
)
...
...
@@ -642,7 +642,7 @@ glue_tool_entry_close (
return
rc
;
}
ID
static
ID
glue_tool_entry_first
(
BackendDB
*
b0
)
...
...
@@ -667,7 +667,7 @@ glue_tool_entry_first (
return
glueBack
->
be_entry_first
(
glueBack
);
}
ID
static
ID
glue_tool_entry_next
(
BackendDB
*
b0
)
...
...
@@ -699,7 +699,7 @@ glue_tool_entry_next (
return
rc
;
}
Entry
*
static
Entry
*
glue_tool_entry_get
(
BackendDB
*
b0
,
ID
id
...
...
@@ -711,7 +711,7 @@ glue_tool_entry_get (
return
glueBack
->
be_entry_get
(
glueBack
,
id
);
}
ID
static
ID
glue_tool_entry_put
(
BackendDB
*
b0
,
Entry
*
e
...
...
@@ -742,7 +742,7 @@ glue_tool_entry_put (
return
be
->
be_entry_put
(
be
,
e
);
}
int
static
int
glue_tool_entry_reindex
(
BackendDB
*
b0
,
ID
id
...
...
@@ -754,7 +754,7 @@ glue_tool_entry_reindex (
return
glueBack
->
be_entry_reindex
(
glueBack
,
id
);
}
int
static
int
glue_tool_sync
(
BackendDB
*
b0
)
...
...
@@ -769,8 +769,6 @@ glue_tool_sync (
return
0
;
}
extern
int
num_subs
;
/* config.c */
int
glue_sub_init
(
)
{
...
...
servers/slapd/filter.c
View file @
883196d3
...
...
@@ -837,7 +837,7 @@ filter_print( Filter *f )
#endif
/* ldap_debug */
int
filter_escape_value
(
static
int
filter_escape_value
(
struct
berval
*
in
,
struct
berval
*
out
)
{
...
...
servers/slapd/phonetic.c
View file @
883196d3
...
...
@@ -24,7 +24,7 @@
ispunct((unsigned char) (x)) || \
isdigit((unsigned char) (x)) || (x) == '\0')
char
*
static
char
*
first_word
(
char
*
s
)
{
if
(
s
==
NULL
)
{
...
...
@@ -42,7 +42,7 @@ first_word( char *s )
return
(
s
);
}
char
*
static
char
*
next_word
(
char
*
s
)
{
if
(
s
==
NULL
)
{
...
...
@@ -64,7 +64,7 @@ next_word( char *s )
return
(
s
);
}
char
*
static
char
*
word_dup
(
char
*
w
)
{
char
*
s
,
*
ret
;
...
...
servers/slapd/proto-slap.h
View file @
883196d3
...
...
@@ -540,9 +540,6 @@ LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
* phonetic.c
*/
LDAP_SLAPD_F
(
char
*
)
first_word
LDAP_P
((
char
*
s
));
LDAP_SLAPD_F
(
char
*
)
next_word
LDAP_P
((
char
*
s
));
LDAP_SLAPD_F
(
char
*
)
word_dup
LDAP_P
((
char
*
w
));
LDAP_SLAPD_F
(
char
*
)
phonetic
LDAP_P
((
char
*
s
));
/*
...
...
@@ -908,6 +905,8 @@ LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
#define SLAP_SB_MAX_INCOMING_DEFAULT ((1<<18) - 1)
#define SLAP_SB_MAX_INCOMING_AUTH ((1<<24) - 1)
LDAP_SLAPD_V
(
int
)
num_subs
;
LDAP_SLAPD_V
(
ber_len_t
)
sockbuf_max_incoming
;
LDAP_SLAPD_V
(
ber_len_t
)
sockbuf_max_incoming_auth
;
...
...
servers/slapd/schema_prep.c
View file @
883196d3
...
...
@@ -117,13 +117,12 @@ structuralObjectClassMatch(
Debug( LDAP_DEBUG_TRACE, "structuralObjectClassMatch(%s,%s) = %d\n",
value->bv_val, a->bv_val, *matchp );
#endif
#endif
return
LDAP_SUCCESS
;
}
struct
slap_schema_oc_map
{
static
struct
slap_schema_oc_map
{
char
*
ssom_name
;
size_t
ssom_offset
;
}
oc_map
[]
=
{
...
...
@@ -137,7 +136,7 @@ struct slap_schema_oc_map {
{
NULL
,
0
}
};
struct
slap_schema_ad_map
{
static
struct
slap_schema_ad_map
{
char
*
ssam_name
;
slap_mr_match_func
*
ssam_match
;
slap_mr_indexer_func
*
ssam_indexer
;
...
...
@@ -236,7 +235,7 @@ static AttributeType slap_at_undefined = {
/* mutex (don't know how to initialize it :) */
};
struct
slap_schema_mr_map
{
static
struct
slap_schema_mr_map
{
char
*
ssmm_name
;
size_t
ssmm_offset
;
}
mr_map
[]
=
{
...
...
@@ -247,7 +246,7 @@ struct slap_schema_mr_map {
{
NULL
,
0
}
};
struct
slap_schema_syn_map
{
static
struct
slap_schema_syn_map
{
char
*
sssm_name
;
size_t
sssm_offset
;
}
syn_map
[]
=
{
...
...
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