Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
5d3605f3
Commit
5d3605f3
authored
Jan 26, 2019
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix OpenSSL config options, close #812
parent
14c187b8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
libcaf_core/src/actor_system_config.cpp
libcaf_core/src/actor_system_config.cpp
+8
-5
No files found.
libcaf_core/src/actor_system_config.cpp
View file @
5d3605f3
...
@@ -128,12 +128,15 @@ actor_system_config::actor_system_config()
...
@@ -128,12 +128,15 @@ actor_system_config::actor_system_config()
opt_group
(
custom_options_
,
"opencl"
)
opt_group
(
custom_options_
,
"opencl"
)
.
add
<
std
::
vector
<
size_t
>>
(
"device-ids"
,
"whitelist for OpenCL devices"
);
.
add
<
std
::
vector
<
size_t
>>
(
"device-ids"
,
"whitelist for OpenCL devices"
);
opt_group
(
custom_options_
,
"openssl"
)
opt_group
(
custom_options_
,
"openssl"
)
.
add
<
string
>
(
"certificate"
,
"path to the PEM-formatted certificate file"
)
.
add
<
string
>
(
openssl_certificate
,
"certificate"
,
.
add
<
string
>
(
"key"
,
"path to the private key file for this node"
)
"path to the PEM-formatted certificate file"
)
.
add
<
string
>
(
"passphrase"
,
"passphrase to decrypt the private key"
)
.
add
<
string
>
(
openssl_key
,
"key"
,
.
add
<
string
>
(
"capath"
,
"path to the private key file for this node"
)
.
add
<
string
>
(
openssl_passphrase
,
"passphrase"
,
"passphrase to decrypt the private key"
)
.
add
<
string
>
(
openssl_capath
,
"capath"
,
"path to an OpenSSL-style directory of trusted certificates"
)
"path to an OpenSSL-style directory of trusted certificates"
)
.
add
<
string
>
(
"cafile"
,
.
add
<
string
>
(
openssl_cafile
,
"cafile"
,
"path to a file of concatenated PEM-formatted certificates"
);
"path to a file of concatenated PEM-formatted certificates"
);
// add renderers for default error categories
// add renderers for default error categories
error_renderers
.
emplace
(
atom
(
"system"
),
render_sec
);
error_renderers
.
emplace
(
atom
(
"system"
),
render_sec
);
...
...
Write
Preview
Markdown
is supported
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