mirror of
https://github.com/znc/znc.git
synced 2026-08-07 17:33:34 +02:00
Changed case on itimeout
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@377 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
+1
-1
@@ -25,7 +25,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
CDCCBounce(const CString& sHostname, unsigned short uPort, CUser* pUser, const CString& sRemoteNick, const CString& sRemoteIP, const CString& sFileName, int itimeout = 60, bool bIsChat = false) : Csock(sHostname, uPort, itimeout) {
|
||||
CDCCBounce(const CString& sHostname, unsigned short uPort, CUser* pUser, const CString& sRemoteNick, const CString& sRemoteIP, const CString& sFileName, int iTimeout = 60, bool bIsChat = false) : Csock(sHostname, uPort, iTimeout) {
|
||||
m_uRemotePort = 0;
|
||||
m_bIsChat = bIsChat;
|
||||
m_pManager = pUser->GetManager();
|
||||
|
||||
@@ -35,7 +35,7 @@ public:
|
||||
m_bNoDelFile = false;
|
||||
}
|
||||
|
||||
/* CDCCSock(CUser* pUser, const CString& sHostname, unsigned short uPort, int itimeout = 60) : Csock(sHostname, uPort, itimeout) {
|
||||
/* CDCCSock(CUser* pUser, const CString& sHostname, unsigned short uPort, int iTimeout = 60) : Csock(sHostname, uPort, iTimeout) {
|
||||
m_uRemotePort = 0;
|
||||
m_uBytesSoFar = 0;
|
||||
m_uFileSize = 0;
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@ public:
|
||||
CUserSock() : Csock() {
|
||||
Init();
|
||||
}
|
||||
CUserSock(const CString& sHostname, unsigned short uPort, int itimeout = 60) : Csock(sHostname, uPort, itimeout) {
|
||||
CUserSock(const CString& sHostname, unsigned short uPort, int iTimeout = 60) : Csock(sHostname, uPort, iTimeout) {
|
||||
Init();
|
||||
}
|
||||
virtual ~CUserSock() {}
|
||||
|
||||
Reference in New Issue
Block a user