Actually sending client handshake

This commit is contained in:
Ian Gulliver
2015-02-07 17:32:57 +01:00
parent 4658186fb4
commit 409c912eeb
2 changed files with 36 additions and 3 deletions

View File

@@ -64,6 +64,11 @@ class CryptoPubClient : public CryptoBase {
void Loop();
private:
static void OnReadable_(struct bufferevent* bev, void* this__);
void OnReadable();
static void OnConnectOrError_(struct bufferevent* bev, const short what, void* this__);
void OnConnect();
struct event_base* event_base_;
struct bufferevent* bev_;
};