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
ff49d18a
Commit
ff49d18a
authored
20 years ago
by
Pierangelo Masarati
Browse files
Options
Downloads
Patches
Plain Diff
improve client parsing - first step
parent
1e17d754
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
clients/tools/common.c
+20
-5
20 additions, 5 deletions
clients/tools/common.c
clients/tools/ldapsearch.c
+22
-6
22 additions, 6 deletions
clients/tools/ldapsearch.c
with
42 additions
and
11 deletions
clients/tools/common.c
+
20
−
5
View file @
ff49d18a
...
...
@@ -151,8 +151,8 @@ tool_args( int argc, char **argv )
int
i
;
while
((
i
=
getopt
(
argc
,
argv
,
options
))
!=
EOF
)
{
int
crit
;
char
*
control
,
*
cvalue
;
int
crit
,
ival
;
char
*
control
,
*
cvalue
,
*
next
;
switch
(
i
)
{
case
'c'
:
/* continuous operation mode */
contoper
++
;
...
...
@@ -161,7 +161,12 @@ tool_args( int argc, char **argv )
referrals
++
;
break
;
case
'd'
:
debug
|=
atoi
(
optarg
);
ival
=
strtol
(
optarg
,
&
next
,
10
);
if
(
next
==
NULL
||
next
[
0
]
!=
'\0'
)
{
fprintf
(
stderr
,
"%s: unable to parse debug value
\"
%s
\"\n
"
,
prog
,
optarg
);
exit
(
EXIT_FAILURE
);
}
debug
|=
ival
;
break
;
case
'D'
:
/* bind DN */
if
(
binddn
!=
NULL
)
{
...
...
@@ -380,10 +385,20 @@ tool_args( int argc, char **argv )
fprintf
(
stderr
,
"%s: -p previously specified
\n
"
,
prog
);
exit
(
EXIT_FAILURE
);
}
ldapport
=
atoi
(
optarg
);
ival
=
strtol
(
optarg
,
&
next
,
10
);
if
(
next
==
NULL
||
next
[
0
]
!=
'\0'
)
{
fprintf
(
stderr
,
"%s: unable to parse port number
\"
%s
\"\n
"
,
prog
,
optarg
);
exit
(
EXIT_FAILURE
);
}
ldapport
=
ival
;
break
;
case
'P'
:
switch
(
atoi
(
optarg
)
)
{
ival
=
strtol
(
optarg
,
&
next
,
10
);
if
(
next
==
NULL
||
next
[
0
]
!=
'\0'
)
{
fprintf
(
stderr
,
"%s: unabel to parse protocol version
\"
%s
\"\n
"
,
prog
,
optarg
);
exit
(
EXIT_FAILURE
);
}
switch
(
ival
)
{
case
2
:
if
(
protocol
==
LDAP_VERSION3
)
{
fprintf
(
stderr
,
"%s: -P 2 incompatible with version %d
\n
"
,
...
...
This diff is collapsed.
Click to expand it.
clients/tools/ldapsearch.c
+
22
−
6
View file @
ff49d18a
...
...
@@ -232,8 +232,8 @@ const char options[] = "a:Ab:E:F:l:Ls:S:tT:uz:"
int
handle_private_option
(
int
i
)
{
int
crit
;
char
*
control
,
*
cvalue
;
int
crit
,
ival
;
char
*
control
,
*
cvalue
,
*
next
;
switch
(
i
)
{
case
'a'
:
/* set alias deref option */
if
(
strcasecmp
(
optarg
,
"never"
)
==
0
)
{
...
...
@@ -408,8 +408,14 @@ handle_private_option( int i )
}
if
(
cookiep
!=
NULL
&&
*
cookiep
!=
'\0'
)
ber_str2bv
(
cookiep
,
0
,
0
,
&
sync_cookie
);
if
(
slimitp
!=
NULL
&&
*
slimitp
!=
'\0'
)
sync_slimit
=
atoi
(
slimitp
);
if
(
slimitp
!=
NULL
&&
*
slimitp
!=
'\0'
)
{
ival
=
strtol
(
slimitp
,
&
next
,
10
);
if
(
next
==
NULL
||
next
[
0
]
!=
'\0'
)
{
fprintf
(
stderr
,
_
(
"Unable to parse sync control value
\"
%s
\"\n
"
),
slimitp
);
exit
(
EXIT_FAILURE
);
}
sync_slimit
=
ival
;
}
}
else
{
fprintf
(
stderr
,
_
(
"sync control value
\"
%s
\"
invalid
\n
"
),
cvalue
);
...
...
@@ -431,7 +437,12 @@ handle_private_option( int i )
if
(
strcasecmp
(
optarg
,
"none"
)
==
0
)
{
timelimit
=
0
;
}
else
{
timelimit
=
atoi
(
optarg
);
ival
=
strtol
(
optarg
,
&
next
,
10
);
if
(
next
==
NULL
||
next
[
0
]
!=
'\0'
)
{
fprintf
(
stderr
,
_
(
"Unable to parse time limit
\"
%s
\"\n
"
),
optarg
);
exit
(
EXIT_FAILURE
);
}
timelimit
=
ival
;
}
if
(
timelimit
<
0
)
{
fprintf
(
stderr
,
_
(
"%s: invalid timelimit (%d) specified
\n
"
),
...
...
@@ -477,7 +488,12 @@ handle_private_option( int i )
if
(
strcasecmp
(
optarg
,
"none"
)
==
0
)
{
sizelimit
=
0
;
}
else
{
sizelimit
=
atoi
(
optarg
);
ival
=
strtol
(
optarg
,
&
next
,
10
);
if
(
next
==
NULL
||
next
[
0
]
!=
'\0'
)
{
fprintf
(
stderr
,
_
(
"Unable to parse size limit
\"
%s
\"\n
"
),
optarg
);
exit
(
EXIT_FAILURE
);
}
sizelimit
=
ival
;
}
if
(
sizelimit
<
0
)
{
fprintf
(
stderr
,
_
(
"%s: invalid sizelimit (%d) specified
\n
"
),
...
...
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