nghttpx: Return SSL_TLSEXT_ERR_OK from servername_callback

This commit is contained in:
Tatsuhiro Tsujikawa 2014-04-27 23:17:19 +09:00
parent 6d5f402380
commit fa8b310cfd
1 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,8 @@ int servername_callback(SSL *ssl, int *al, void *arg)
}
}
}
return SSL_TLSEXT_ERR_NOACK;
return SSL_TLSEXT_ERR_OK;
}
} // namespace