1
0
mirror of synced 2025-04-26 14:28:51 +03:00

Fixed warnings

This commit is contained in:
yhirose 2020-11-08 17:59:11 -05:00
parent 6adf130bf3
commit 6613d7b7ad

View File

@ -3482,11 +3482,12 @@ TEST(SSLClientServerTest, SSLConnectTimeout) {
bool stop_;
private:
bool process_and_close_socket(socket_t sock) override {
bool process_and_close_socket(socket_t /*sock*/) override {
// Don't create SSL context
while (!stop_) {
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
return true;
}
};
NoListenSSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE);