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

📄 protocolinfo.h

📁 费尔防火墙源代码
💻 H
字号:
//=============================================================================================
/*
	ProtocolInfo.h

	Project	: XFILTER 1.0 Personal Firewall
	Author	: Tony Zhu
	Create Date	: 2001/08/21
	Email	: xstudio@xfilt.com
	URL		: http://www.xfilt.com

	Copyright (c) 2001-2002 XStudio Technology.
	All Rights Reserved.

	WARNNING: 
*/
//=============================================================================================

#ifndef PROTOCOLINFO_H
#define PROTOCOLINFO_H

class CProtocolInfo
{
private:
	int	GetFromSend		(SESSION *session, TCHAR *pBuf, int nBufLenth);
	int	GetFromRecv		(SESSION *session, TCHAR *pBuf, int nBufLenth);
	int	GetFtp			(SESSION *session, TCHAR *pBuf, int nBufLenth);
	int	GetHttp			(SESSION *session, TCHAR *pBuf, int nBufLenth);
	int	GetSmtp			(SESSION *session, TCHAR *pBuf, int nBufLenth);
	int	GetPop3BySend	(SESSION *session, TCHAR *pBuf, int nBufLenth);
	int	GetPop3			(SESSION *session, TCHAR *pBuf, int nBufLenth);

public:
	int	GetProtocolInfo	(SESSION *session, TCHAR *pBuf, int nBufLenth, BOOL IsSend);
};

#endif

⌨️ 快捷键说明

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