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

📄 sipmsg.h

📁 Pocket SIP Messenger is a SIP instant messaging client for small devices that use Windows CE (iPAQ P
💻 H
字号:
// SIPMsg.h: interface for the CSIPMsg class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SIPMSG_H__DA737839_9263_4A9B_B1F5_03796BB64964__INCLUDED_)
#define AFX_SIPMSG_H__DA737839_9263_4A9B_B1F5_03796BB64964__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "str.h"

int m_strncasecmp(char *a, char *b, int l);

class CSIPMsg  
{
public:
	CSIPMsg();
	virtual ~CSIPMsg();

protected:
	str sip_msg;	// the SIP message
	str from;		// from header
	str body;		// body of the message
public:
	int setSIPMsg(char* msg, int len);
	int getFrom(str *f);
	int getBody(str *b);
	int buildResponse(str *r, char *fl, CString cAddr, int cPort);
	int isIdentic(char *msg, int len);
};

#endif // !defined(AFX_SIPMSG_H__DA737839_9263_4A9B_B1F5_03796BB64964__INCLUDED_)

⌨️ 快捷键说明

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