12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #if !defined(AFX_CONNECTT_H__B7C54BD2_A555_11D0_8996_00AA00B92B2E__INCLUDED_)
- #define AFX_CONNECTT_H__B7C54BD2_A555_11D0_8996_00AA00B92B2E__INCLUDED_
- #include "ConnectSocket.h"
- #if _MSC_VER >= 1000
- #pragma once
- #endif
- class CConnectThread : public CWinThread
- {
- DECLARE_DYNCREATE(CConnectThread)
- protected:
- CConnectThread();
- public:
- void IncReceivedBytes(int nBytes);
- void IncSentBytes(int nBytes);
- static VOID CALLBACK TimerProc(HWND hwnd, UINT uMsg, UINT uIDEvent, DWORD dwTime);
- public:
- void UpdateStatistic(int nType);
- CString m_strRemoteHost;
-
-
- SOCKET m_hSocket;
-
-
- CConnectSocket m_ConnectSocket;
-
-
- public:
- virtual BOOL InitInstance();
- virtual int ExitInstance();
-
- protected:
- UINT m_nTimerID;
- virtual ~CConnectThread();
- int m_nReceivedBytes;
- int m_nSentBytes;
- CTime m_LastDataTransferTime;
-
-
-
- LRESULT OnThreadMessage(WPARAM wParam, LPARAM lParam);
- DECLARE_MESSAGE_MAP()
- };
- #endif
|