mosocket.h

来自「一个手机通信的源代码 一个手机通信的源代码一个手机通信的源代码」· C头文件 代码 · 共 65 行

H
65
字号
#if !defined(AFX_MOSOCKET_H__79851196_BB6F_4C6A_9B77_BC8DB4178C6B__INCLUDED_)
#define AFX_MOSOCKET_H__79851196_BB6F_4C6A_9B77_BC8DB4178C6B__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MoSocket.h : header file
//

#include "MoClient.h"

/////////////////////////////////////////////////////////////////////////////
// CMoSocket command target
//Mo方式

class CMoSocket : public CSocket
{
// Attributes

public:
	typedef struct StructProvinceClient{
		CString m_csIsmgIP;
		int Index;
        CArray<CMoClient*, CMoClient*> m_pClientArray;   
	}StructProvinceClient;
	CArray<StructProvinceClient*,StructProvinceClient*> m_ProvinceClient;
public:
// Operations
public:
	CMoSocket();
	virtual ~CMoSocket();

// Overrides
public:
	void InitProvince(CString IsmgIP,int Index);
	void OnReceiveWrongPackage(int Pos,int Index);

	CMoThread* m_ParentThread;
	BOOL CreateMoSocket(UINT LocalPort,CString csRemoteIP,CString ICPSecret, char* AuthenticatorICP);
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMoSocket)
	public:
	virtual void OnAccept(int nErrorCode);
	//}}AFX_VIRTUAL

	// Generated message map functions
	//{{AFX_MSG(CMoSocket)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG

// Implementation
protected:
 //  CArray<CMoClient*, CMoClient*> m_pClientArray;
private:
	CString m_csRemoteIP;

};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MOSOCKET_H__79851196_BB6F_4C6A_9B77_BC8DB4178C6B__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?