summaryrefslogtreecommitdiffstats
path: root/apps/s_apps.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-09-12 23:14:28 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-09-12 23:14:28 +0000
commit2a7cbe77b3abb244c2211d22d7aa3416b97c9342 (patch)
tree6fac05021a386f88a82694976dfc4f504fafba9f /apps/s_apps.h
parent94a209d8e1ef9cc0a26ff16e5419b198fdfa5adc (diff)
Add -brief option to s_client and s_server to summarise connection details.
New option -verify_quiet to shut up the verify callback unless there is an error.
Diffstat (limited to 'apps/s_apps.h')
-rw-r--r--apps/s_apps.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/s_apps.h b/apps/s_apps.h
index b45c1b9a56..b1ae531367 100644
--- a/apps/s_apps.h
+++ b/apps/s_apps.h
@@ -161,7 +161,7 @@ int set_cert_key_and_authz(SSL_CTX *ctx, X509 *cert, EVP_PKEY *key,
unsigned char *authz, size_t authz_length);
# endif
int ssl_print_sigalgs(BIO *out, SSL *s);
-int ssl_print_curves(BIO *out, SSL *s);
+int ssl_print_curves(BIO *out, SSL *s, int noshared);
#endif
int ssl_print_tmp_key(BIO *out, SSL *s);
int init_client(int *sock, char *server, int port, int type);
@@ -190,3 +190,4 @@ void ssl_excert_free(SSL_EXCERT *exc);
int args_excert(char ***pargs, int *pargc,
int *badarg, BIO *err, SSL_EXCERT **pexc);
int load_excert(SSL_EXCERT **pexc, BIO *err);
+void print_ssl_summary(BIO *bio, SSL *s);