소스 검색

Optimize OpenSSL initialization by removing synonymous calls to SSL_library_init()

ahc_fix_select^2
Muzaffar Auhammud 6 년 전
부모
커밋
2fbd9e93ea
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. +1
    -4
      src/httperf.c

+ 1
- 4
src/httperf.c 파일 보기

@@ -1007,12 +1007,9 @@ main(int argc, char **argv)

SSL_library_init ();
SSL_load_error_strings ();
#if (OPENSSL_VERSION_NUMBER >= 0x10100000L)
OpenSSL_add_all_algorithms ();
#else
#if (OPENSSL_VERSION_NUMBER < 0x10100000L)
SSLeay_add_all_algorithms ();
#endif
SSLeay_add_ssl_algorithms ();

switch (param.ssl_protocol)
{


불러오는 중...
취소
저장