From 4a73979c4a0f0fdde8471416ef38a64a11113763 Mon Sep 17 00:00:00 2001 From: "keldu.magnus" Date: Mon, 10 May 2021 17:14:34 +0200 Subject: [PATCH] tls build fix --- source/kelgin/tls.cpp | 2 ++ source/kelgin/tls.h | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/source/kelgin/tls.cpp b/source/kelgin/tls.cpp index a749d70..7c11d8e 100644 --- a/source/kelgin/tls.cpp +++ b/source/kelgin/tls.cpp @@ -3,6 +3,8 @@ #include #include +#include "io_helpers.h" + namespace gin { class TlsContext::Impl { private: diff --git a/source/kelgin/tls.h b/source/kelgin/tls.h index e377400..d2ede42 100644 --- a/source/kelgin/tls.h +++ b/source/kelgin/tls.h @@ -22,12 +22,9 @@ public: class TlsNetwork final : public Network { private: - Network &network; TlsContext context; public: - TlsContext(Network &); - Conveyor> parseAddress(const std::string &, uint16_t port_hint = 0) override; };