diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2021-12-07 07:32:12 +0100 |
---|---|---|
committer | Dr. David von Oheimb <dev@ddvo.net> | 2021-12-09 20:17:44 +0100 |
commit | 83b424c3f60a4401fa3e6e41ff7f08e85ee9df94 (patch) | |
tree | 9e9344d9878fe4751c294949b97836052729f4aa /doc/man1/openssl-cmp.pod.in | |
parent | Minor code cleanup in o_names_init (diff) | |
download | openssl-83b424c3f60a4401fa3e6e41ff7f08e85ee9df94.tar.xz openssl-83b424c3f60a4401fa3e6e41ff7f08e85ee9df94.zip |
APPS/cmp: Fix use of OPENSSL_NO_SOCK: options like -server do not make sense with no-sock
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17226)
Diffstat (limited to 'doc/man1/openssl-cmp.pod.in')
-rw-r--r-- | doc/man1/openssl-cmp.pod.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man1/openssl-cmp.pod.in b/doc/man1/openssl-cmp.pod.in index 58e9bd7dda..26a9f88f14 100644 --- a/doc/man1/openssl-cmp.pod.in +++ b/doc/man1/openssl-cmp.pod.in @@ -48,10 +48,10 @@ Certificate enrollment and revocation options: Message transfer options: [B<-server> I<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]>] -[B<-path> I<remote_path>] [B<-proxy> I<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]>] [B<-no_proxy> I<addresses>] [B<-recipient> I<name>] +[B<-path> I<remote_path>] [B<-keep_alive> I<value>] [B<-msg_timeout> I<seconds>] [B<-total_timeout> I<seconds>] @@ -449,11 +449,6 @@ The optional userinfo and fragment components are ignored. Any given query component is handled as part of the path component. If a path is included it provides the default value for the B<-path> option. -=item B<-path> I<remote_path> - -HTTP path at the CMP server (aka CMP alias) to use for POST requests. -Defaults to any path given with B<-server>, else C<"/">. - =item B<-proxy> I<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]> The HTTP(S) proxy server to use for reaching the CMP server unless B<-no_proxy> @@ -488,6 +483,11 @@ as far as any of those is present, else the NULL-DN as last resort. The argument must be formatted as I</type0=value0/type1=value1/type2=...>. For details see the description of the B<-subject> option. +=item B<-path> I<remote_path> + +HTTP path at the CMP server (aka CMP alias) to use for POST requests. +Defaults to any path given with B<-server>, else C<"/">. + =item B<-keep_alive> I<value> If the given value is 0 then HTTP connections are not kept open |