0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02:00

ircd::net::acceptor: Don't condition response for SNI here.

This commit is contained in:
Jason Volk 2019-03-16 12:37:44 -07:00
parent 03abdd5ac6
commit b3a875bc63

View file

@ -1554,7 +1554,7 @@ ircd::net::acceptor::check_handshake_error(const error_code &ec,
bool
ircd::net::acceptor::handle_sni(SSL &ssl,
int &ad)
int &client_server)
try
{
const string_view &name
@ -1569,9 +1569,6 @@ try
name
};
if(!name)
return false;
return true;
}
catch(const sni_warning &e)