diff options
author | George Hazan <george.hazan@gmail.com> | 2013-12-04 18:00:27 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-12-04 18:00:27 +0000 |
commit | 18274fdde5d3a62640c472878fa05cfc228d7299 (patch) | |
tree | 27afe06901f950f5b0e11a1e98411654ce30acfe /protocols/IRCG/src/irc.h | |
parent | 4efc5e1f7d044d70954842fab1b9c754f04221e6 (diff) |
IRC: custom reconnect code removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@7048 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG/src/irc.h')
-rw-r--r-- | protocols/IRCG/src/irc.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/protocols/IRCG/src/irc.h b/protocols/IRCG/src/irc.h index 9c1aef10e6..f6028219ee 100644 --- a/protocols/IRCG/src/irc.h +++ b/protocols/IRCG/src/irc.h @@ -298,8 +298,6 @@ struct CIrcProto : public PROTO<CIrcProto> char m_portEnd[10];
int m_iSSL;
TCHAR m_identPort[10];
- TCHAR m_retryWait[10];
- TCHAR m_retryCount[10];
TCHAR m_nick[30], m_pNick[30];
TCHAR m_alternativeNick[30];
TCHAR m_name[200];
@@ -326,7 +324,6 @@ struct CIrcProto : public PROTO<CIrcProto> BYTE m_hideServerWindow;
BYTE m_ident;
BYTE m_identTimer;
- BYTE m_retry;
BYTE m_disableDefaultServer;
BYTE m_autoOnlineNotification;
BYTE m_sendKeepAlive;
@@ -366,7 +363,6 @@ struct CIrcProto : public PROTO<CIrcProto> CIrcSessionInfo si;
- int m_iRetryCount;
int m_portCount;
DWORD m_bConnectRequested;
DWORD m_bConnectThreadRunning;
@@ -476,8 +472,6 @@ struct CIrcProto : public PROTO<CIrcProto> void DisconnectFromServer(void);
void InitMainMenus(void);
- UINT_PTR RetryTimer;
-
void __cdecl ConnectServerThread( void* );
void __cdecl DisconnectServerThread( void* );
@@ -646,7 +640,6 @@ VOID CALLBACK KeepAliveTimerProc( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD VOID CALLBACK OnlineNotifTimerProc( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime );
VOID CALLBACK OnlineNotifTimerProc3( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime );
VOID CALLBACK DCCTimerProc( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime );
-VOID CALLBACK RetryTimerProc( HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime );
// options.cpp
|