quantum init

This commit is contained in:
zhaoxiaomeng
2018-01-04 13:38:57 +08:00
committed by Simon
parent d11f845fde
commit 53af3b51ae
2361 changed files with 387455 additions and 144458 deletions

View File

@@ -1,11 +1,5 @@
/*
* Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
/* NOCW */
/* demos/bio/saccept-conf.c */
/*
* A minimal program to serve an SSL connection. It uses blocking. It uses
@@ -14,7 +8,6 @@
*/
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <openssl/err.h>
#include <openssl/ssl.h>
@@ -34,7 +27,10 @@ int main(int argc, char *argv[])
char buf[512];
int ret = 1, i;
ctx = SSL_CTX_new(TLS_server_method());
SSL_load_error_strings();
/* Add ciphers and message digests */
OpenSSL_add_ssl_algorithms();
conf = NCONF_new(NULL);
@@ -53,6 +49,7 @@ int main(int argc, char *argv[])
goto err;
}
ctx = SSL_CTX_new(SSLv23_server_method());
cctx = SSL_CONF_CTX_new();
SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_SERVER);
SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CERTIFICATE);
@@ -70,7 +67,7 @@ int main(int argc, char *argv[])
ERR_print_errors_fp(stderr);
goto err;
}
if (strcmp(cnf->name, "Port") == 0) {
if (!strcmp(cnf->name, "Port")) {
port = cnf->value;
} else {
fprintf(stderr, "Unknown configuration option %s\n", cnf->name);
@@ -134,7 +131,8 @@ int main(int argc, char *argv[])
if (ret) {
ERR_print_errors_fp(stderr);
}
BIO_free(in);
if (in != NULL)
BIO_free(in);
exit(ret);
return (!ret);
}