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
fd8b582a
Commit
fd8b582a
authored
25 years ago
by
Julio Sánchez Fernández
Browse files
Options
Downloads
Patches
Plain Diff
We should stop using SSL to refer to TLS. This is a first step.
parent
afa4fde7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/config.c
+6
-6
6 additions, 6 deletions
servers/slapd/config.c
with
6 additions
and
6 deletions
servers/slapd/config.c
+
6
−
6
View file @
fd8b582a
...
...
@@ -588,42 +588,42 @@ read_config( char *fname )
#endif
/*SLAPD_MODULES*/
#ifdef HAVE_TLS
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
SSL
Protocol"
)
)
{
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
TLS
Protocol"
)
)
{
rc
=
ldap_pvt_tls_set_option
(
NULL
,
LDAP_OPT_X_TLS_PROTOCOL
,
cargv
[
1
]
);
if
(
rc
)
return
rc
;
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
SSL
CipherSuite"
)
)
{
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
TLS
CipherSuite"
)
)
{
rc
=
ldap_pvt_tls_set_option
(
NULL
,
LDAP_OPT_X_TLS_CIPHER_SUITE
,
cargv
[
1
]
);
if
(
rc
)
return
rc
;
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
SSL
CertificateFile"
)
)
{
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
TLS
CertificateFile"
)
)
{
rc
=
ldap_pvt_tls_set_option
(
NULL
,
LDAP_OPT_X_TLS_CERTFILE
,
cargv
[
1
]
);
if
(
rc
)
return
rc
;
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
SSL
CertificateKeyFile"
)
)
{
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
TLS
CertificateKeyFile"
)
)
{
rc
=
ldap_pvt_tls_set_option
(
NULL
,
LDAP_OPT_X_TLS_KEYFILE
,
cargv
[
1
]
);
if
(
rc
)
return
rc
;
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
SSL
CACertificatePath"
)
)
{
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
TLS
CACertificatePath"
)
)
{
rc
=
ldap_pvt_tls_set_option
(
NULL
,
LDAP_OPT_X_TLS_CACERTDIR
,
cargv
[
1
]
);
if
(
rc
)
return
rc
;
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
SSL
CACertificateFile"
)
)
{
}
else
if
(
!
strcasecmp
(
cargv
[
0
],
"
TLS
CACertificateFile"
)
)
{
rc
=
ldap_pvt_tls_set_option
(
NULL
,
LDAP_OPT_X_TLS_CACERTFILE
,
cargv
[
1
]
);
...
...
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