Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Josh Wilcox
crown-core
Commits
b75f324f
Commit
b75f324f
authored
7 years ago
by
Ashot
Browse files
Options
Download
Email Patches
Plain Diff
Added '-updateurl' and '-updateautocheck' to command line options
parent
0d8376c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/init.cpp
+3
-0
src/init.cpp
with
3 additions
and
0 deletions
+3
-0
src/init.cpp
View file @
b75f324f
...
...
@@ -468,6 +468,9 @@ std::string HelpMessage(HelpMessageMode mode)
strUsage
+=
" -rpcsslcertificatechainfile=<file.cert> "
+
strprintf
(
_
(
"Server certificate file (default: %s)"
),
"server.cert"
)
+
"
\n
"
;
strUsage
+=
" -rpcsslprivatekeyfile=<file.pem> "
+
strprintf
(
_
(
"Server private key (default: %s)"
),
"server.pem"
)
+
"
\n
"
;
strUsage
+=
" -rpcsslciphers=<ciphers> "
+
strprintf
(
_
(
"Acceptable ciphers (default: %s)"
),
"TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH"
)
+
"
\n
"
;
strUsage
+=
"
\n
"
+
_
(
"Updater options:"
)
+
"
\n
"
;
strUsage
+=
" -updateurl "
+
_
(
"Url of json file which holds update information"
)
+
"
\n
"
;
strUsage
+=
" -updateautocheck "
+
_
(
"Check for updates automatically"
)
+
"
\n
"
;
return
strUsage
;
}
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help