mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
style: cargo fmt
This commit is contained in:
parent
3077890c22
commit
dbd8654a7a
@ -212,8 +212,12 @@ where
|
|||||||
config.ldaps_options.port
|
config.ldaps_options.port
|
||||||
);
|
);
|
||||||
server_builder.and_then(|s| {
|
server_builder.and_then(|s| {
|
||||||
s.bind("ldaps", (config.host.clone(), config.ldaps_options.port), tls_binder)
|
s.bind(
|
||||||
.with_context(|| format!("while binding to the port {}", config.ldaps_options.port))
|
"ldaps",
|
||||||
|
(config.host.clone(), config.ldaps_options.port),
|
||||||
|
tls_binder,
|
||||||
|
)
|
||||||
|
.with_context(|| format!("while binding to the port {}", config.ldaps_options.port))
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
server_builder
|
server_builder
|
||||||
|
Loading…
Reference in New Issue
Block a user