diff options
Diffstat (limited to 'src/zenhttp/dlltransport.h')
| -rw-r--r-- | src/zenhttp/dlltransport.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenhttp/dlltransport.h b/src/zenhttp/dlltransport.h index b13bab804..2dccdd0f9 100644 --- a/src/zenhttp/dlltransport.h +++ b/src/zenhttp/dlltransport.h @@ -13,7 +13,7 @@ class DllTransportPluginImpl; /** Transport plugin which supports dynamic loading of external transport * provider modules */ -class DllTransportPlugin : public TransportPluginInterface, RefCounted +class DllTransportPlugin : public TransportPlugin, RefCounted { public: DllTransportPlugin(uint16_t BasePort, unsigned int ThreadCount); @@ -22,7 +22,7 @@ public: virtual uint32_t AddRef() const override; virtual uint32_t Release() const override; - virtual void Initialize(TransportServerInterface* ServerInterface) override; + virtual void Initialize(TransportServer* ServerInterface) override; virtual void Shutdown() override; virtual bool IsAvailable() override; |