summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/s_server.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr.bin/openssl/s_server.c')
-rw-r--r--src/usr.bin/openssl/s_server.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr.bin/openssl/s_server.c b/src/usr.bin/openssl/s_server.c
index 233b8fdced..9b06856ac9 100644
--- a/src/usr.bin/openssl/s_server.c
+++ b/src/usr.bin/openssl/s_server.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: s_server.c,v 1.53 2021/10/31 16:47:27 tb Exp $ */ 1/* $OpenBSD: s_server.c,v 1.54 2021/12/06 11:06:58 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -180,13 +180,13 @@
180static void s_server_init(void); 180static void s_server_init(void);
181static void sv_usage(void); 181static void sv_usage(void);
182static void print_stats(BIO *bp, SSL_CTX *ctx); 182static void print_stats(BIO *bp, SSL_CTX *ctx);
183static int sv_body(char *hostname, int s, unsigned char *context); 183static int sv_body(int s, unsigned char *context);
184static void close_accept_socket(void); 184static void close_accept_socket(void);
185static int init_ssl_connection(SSL *s); 185static int init_ssl_connection(SSL *s);
186#ifndef OPENSSL_NO_DH 186#ifndef OPENSSL_NO_DH
187static DH *load_dh_param(const char *dhfile); 187static DH *load_dh_param(const char *dhfile);
188#endif 188#endif
189static int www_body(char *hostname, int s, unsigned char *context); 189static int www_body(int s, unsigned char *context);
190static int generate_session_id(const SSL *ssl, unsigned char *id, 190static int generate_session_id(const SSL *ssl, unsigned char *id,
191 unsigned int *id_len); 191 unsigned int *id_len);
192static int ssl_servername_cb(SSL *s, int *ad, void *arg); 192static int ssl_servername_cb(SSL *s, int *ad, void *arg);
@@ -1531,7 +1531,7 @@ print_stats(BIO *bio, SSL_CTX *ssl_ctx)
1531} 1531}
1532 1532
1533static int 1533static int
1534sv_body(char *hostname, int s, unsigned char *context) 1534sv_body(int s, unsigned char *context)
1535{ 1535{
1536 char *buf = NULL; 1536 char *buf = NULL;
1537 int ret = 1; 1537 int ret = 1;
@@ -1956,7 +1956,7 @@ load_dh_param(const char *dhfile)
1956#endif 1956#endif
1957 1957
1958static int 1958static int
1959www_body(char *hostname, int s, unsigned char *context) 1959www_body(int s, unsigned char *context)
1960{ 1960{
1961 char *buf = NULL; 1961 char *buf = NULL;
1962 int ret = 1; 1962 int ret = 1;