OpenSSL: update to 1.0.2a
[tomato.git] / release / src-rt-6.x.4708 / router / openssl / doc / ssl / SSL_CONF_cmd_argv.pod
blob6e66441cd1b6c8bd9e0c343b57662ed46e0dfb04
1 =pod
3 =head1 NAME
5 SSL_CONF_cmd_argv - SSL configuration command line processing.
7 =head1 SYNOPSIS
9  #include <openssl/ssl.h>
11  int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv);
13 =head1 DESCRIPTION
15 The function SSL_CONF_cmd_argv() processes at most two command line
16 arguments from B<pargv> and B<pargc>. The values of B<pargv> and B<pargc>
17 are updated to reflect the number of command options processed. The B<pargc>
18 argument can be set to B<NULL> is it is not used.
20 =head1 RETURN VALUES
22 SSL_CONF_cmd_argv() returns the number of command arguments processed: 0, 1, 2
23 or a negative error code.
25 If -2 is returned then an argument for a command is missing.
27 If -1 is returned the command is recognised but couldn't be processed due
28 to an error: for example a syntax error in the argument.
30 =head1 SEE ALSO
32 L<SSL_CONF_CTX_new(3)|SSL_CONF_CTX_new(3)>,
33 L<SSL_CONF_CTX_set_flags(3)|SSL_CONF_CTX_set_flags(3)>,
34 L<SSL_CONF_CTX_set1_prefix(3)|SSL_CONF_CTX_set1_prefix(3)>,
35 L<SSL_CONF_CTX_set_ssl_ctx(3)|SSL_CONF_CTX_set_ssl_ctx(3)>,
36 L<SSL_CONF_cmd(3)|SSL_CONF_cmd(3)>
38 =head1 HISTORY
40 These functions were first added to OpenSSL 1.0.2
42 =cut