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

📄 sap.h

📁 this ebook is for GSM if any one has interest in it you can take it
💻 H
字号:
#ifndef SAP_H#define SAP_H 1#include "getstream.h"#include "output.h"struct sappkt_s {	uint8_t	version:3,		addrtype:1,		reserved:1,		msgtype:1,		encryption:1,		compressed:1;	uint8_t		authlen;	uint16_t	msgidhash;	uint32_t	origin;};struct sap_s {	/* Config items */	char			*scope;	char			*group;	int			port;	char			*announcehost;	int			announceport;	char			*playgroup;	/* SAP socket port and address */	int			fd,				ttl;	struct event		event;	int			sid;	/* Session Identifier */	char			*name;	/* Session Name */	char			*cdata;	/* Connection Data RFC2327 */	char			*mdata;	/* Media Announcement Data RFC2327 */	char			*odata;	/* Origin Data RFC2327 */	uint32_t		addr;	/* For the SAP header */	struct output_s		*output;};#define SAP_ADDRTYPE_V4		0#define SAP_ADDRTYPE_V6		1#define SAP_MSGTYPE_ANNOUNCE	1#define SAP_MSGTYPE_DELETE	0#define SAP_V4_GLOBAL_ADDRESS   "224.2.127.254"#define SAP_V4_ORG_ADDRESS      "239.195.255.255" /* Organization-local SAP address */#define SAP_V4_LOCAL_ADDRESS    "239.255.255.255" /* Local (smallest non-link-local scope) SAP address */#define SAP_V4_LINK_ADDRESS     "224.0.0.255"	/* Link-local SAP address */#define SAP_TTL		15#define SAP_PORT	9875				/* As per RFC 2974 */#define SAP_MAX_SIZE	1024				/* As per RFC 2974 */int sap_init(struct sap_s *sap);#endif

⌨️ 快捷键说明

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