mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
This class will be used to implement async DNS in a later commit. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1550 726aef4b-f618-498e-8847-2d620e286838
18 lines
378 B
C++
18 lines
378 B
C++
/*
|
|
* Copyright (C) 2004-2009 See the AUTHORS file for details.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
* by the Free Software Foundation.
|
|
*/
|
|
|
|
#include "Socket.h"
|
|
|
|
CSockManager::CSockManager() : TSocketManager<CZNCSock>()
|
|
{
|
|
}
|
|
|
|
CSockManager::~CSockManager()
|
|
{
|
|
}
|