Skip to content

Commit

Permalink
Merge pull request #305 from jarnfast/ssl-quiet-shutdown
Browse files Browse the repository at this point in the history
Enable 'quiet shutdown' on the SSL context
  • Loading branch information
rbsec authored Jan 21, 2024
2 parents f9bd534 + b81760e commit f4bc3b5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sslscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ SSL_CTX *new_CTX(const SSL_METHOD *method) {
SSL_CTX *ret = SSL_CTX_new(method);
SSL_CTX_set_security_level(ret, 0);
SSL_CTX_set_security_callback(ret, security_callback_allow_all);
SSL_CTX_set_quiet_shutdown(ret, 1);
return ret;
}

Expand Down

0 comments on commit f4bc3b5

Please sign in to comment.