⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 net_logintcp.h

📁 实时监控
💻 H
字号:
#ifndef _NET_LOGINTCP_H
#define	_NET_LOGINTCP_H

#include "net_clienttcp.h"

class net_logintcp: public net_clienttcp
{

protected:
	virtual void on_disconnect(ULONG from_ip, USHORT from_port);

	virtual bool on_net_tcp_recv(byte* buf, int length, ULONG from_ip, USHORT from_port);

public:

	net_logintcp();

	bool create(ULONG ip, USHORT port, USHORT bindport) ;

	void destroy();
	
	virtual ~net_logintcp();
};

#endif	// _NET_BK_H

⌨️ 快捷键说明

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