Add and use CZNCSock instead of Csock everywhere

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
This commit is contained in:
psychon
2009-06-29 11:26:19 +00:00
parent 65510446df
commit 442aee2baf
14 changed files with 49 additions and 35 deletions
+3 -3
View File
@@ -9,7 +9,7 @@
#ifndef _FILEUTILS_H
#define _FILEUTILS_H
#include "Csocket.h"
#include "Socket.h"
#include "ZNCString.h"
#include <dirent.h>
#include <map>
@@ -284,9 +284,9 @@ protected:
};
//! @author imaginos@imaginos.net
class CExecSock : public Csock {
class CExecSock : public CZNCSock {
public:
CExecSock() : Csock() {
CExecSock() : CZNCSock() {
m_iPid = -1;
}