add cancellation support while connecting, to speed up WebSocket::stop

This commit is contained in:
Benjamin Sergeant
2018-12-09 17:56:20 -08:00
parent 5bf1b91528
commit 50b638f7fd
13 changed files with 69 additions and 25 deletions

View File

@@ -7,6 +7,7 @@
#pragma once
#include "IXSocket.h"
#include "IXSocketConnect.h"
#include <openssl/bio.h>
#include <openssl/hmac.h>
@@ -26,7 +27,8 @@ namespace ix
virtual bool connect(const std::string& host,
int port,
std::string& errMsg) final;
std::string& errMsg,
CancellationRequest isCancellationRequested) final;
virtual void close() final;
virtual int send(char* buffer, size_t length) final;