From 08924f499fddecea6ab6e28485bb1c28aa489582 Mon Sep 17 00:00:00 2001 From: psychon Date: Wed, 20 May 2009 11:56:15 +0000 Subject: [PATCH] Add CListener::GetRealListener() This allows access to the Csock* which does the actual listening git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1515 726aef4b-f618-498e-8847-2d620e286838 --- znc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/znc.h b/znc.h index 791a8c84..44913dcf 100644 --- a/znc.h +++ b/znc.h @@ -273,6 +273,7 @@ public: bool IsIPV6() const { return m_bIPV6; } unsigned short GetPort() const { return m_uPort; } const CString& GetBindHost() const { return m_sBindHost; } + CRealListener* GetRealListener() const { return m_pListener; } // !Getters bool Listen() {