From 11f7f70b825c5b6784f5e2609463a1a9d1a0dabc Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Wed, 11 Oct 2023 14:59:25 +0200 Subject: pluggable asio transport (#460) added pluggable transport based on asio. This is in an experimental state and is not yet a replacement for httpasio even though that is the ultimate goal also moved plugin API header into dedicated part of the tree to clarify that it is meant to be usable in isolation, without any dependency on zencore et al moved transport implementations into dedicated source directory in zenhttp note that this adds code to the build but nothing should change at runtime since the instantiation of the new code is conditional and is inactive by default --- src/plugins/winsock/winsock.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/plugins/winsock/winsock.cpp') diff --git a/src/plugins/winsock/winsock.cpp b/src/plugins/winsock/winsock.cpp index 3ee3f0ccd..a6cfed1e3 100644 --- a/src/plugins/winsock/winsock.cpp +++ b/src/plugins/winsock/winsock.cpp @@ -24,6 +24,8 @@ ZEN_THIRD_PARTY_INCLUDES_END ////////////////////////////////////////////////////////////////////////// +using namespace zen; + class SocketTransportPlugin : public TransportPlugin, zen::RefCounted { public: -- cgit v1.2.3