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

📄 udp-slp.h

📁 the User Agent and Service Agent functionality of the Service Location Protocol, based on RFC 2608:
💻 H
字号:
#include "slp/slp-common.h"// UdpSlpAgent Class definitionclass UdpSLPAgent : public UdpAgent {public:	UdpSLPAgent();	UdpSLPAgent(packet_t);	virtual int supportSLP() { return 1; }	virtual void enableSLP() { support_slp_ = 1; }	virtual void sendto(int nbytes, const char* flags, ns_addr_t dst);	void recv(Packet*, Handler*);protected:	int support_slp_; // set to 1 if above is SLPApp};

⌨️ 快捷键说明

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