sap.h

来自「Session Description Protocol parse code」· C头文件 代码 · 共 24 行

H
24
字号
#ifndef  __SAP_H__#define  __SAP_H__#ifndef __SDP_H__#include "sdp.h"#endiftypedef struct sap_session_s sap_session_t;struct sap_session_s {        int              version;        int              addrType;        int              isDel;        int              isEnc;        int              isComp;	unsigned int     hashID;	char             sourceIP[32];	sdp_desc_t*      sdp;};sap_session_t*  sap_parse(char* packet,  int packet_len);void            sap_destroy(sap_session_t* sap);#endif

⌨️ 快捷键说明

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