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

📄 natpmp.hpp

📁 LINUX下
💻 HPP
字号:
/*Copyright (c) 2007, Arvid NorbergAll rights reserved.Redistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditionsare met:    * Redistributions of source code must retain the above copyright      notice, this list of conditions and the following disclaimer.    * Redistributions in binary form must reproduce the above copyright      notice, this list of conditions and the following disclaimer in      the documentation and/or other materials provided with the distribution.    * Neither the name of the author nor the names of its      contributors may be used to endorse or promote products derived      from this software without specific prior written permission.THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BELIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THEPOSSIBILITY OF SUCH DAMAGE.*/#ifndef TORRENT_NATPMP_HPP#define TORRENT_NATPMP_HPP#include "libtorrent/socket.hpp"#include "libtorrent/intrusive_ptr_base.hpp"#include <boost/function.hpp>#if defined(TORRENT_LOGGING) || defined(TORRENT_VERBOSE_LOGGING)#include <fstream>#endifnamespace libtorrent{// int: external tcp port// int: external udp port// std::string: error messagetypedef boost::function<void(int, int, std::string const&)> portmap_callback_t;class natpmp : public intrusive_ptr_base<natpmp>{public:	natpmp(io_service& ios, address const& listen_interface, portmap_callback_t const& cb);	void rebind(address const& listen_interface);	// maps the ports, if a port is set to 0	// it will not be mapped	void set_mappings(int tcp, int udp);	void close();private:		void update_mapping(int i, int port);	void send_map_request(int i);	void resend_request(int i, asio::error_code const& e);	void on_reply(asio::error_code const& e		, std::size_t bytes_transferred);	void try_next_mapping(int i);	void update_expiration_timer();	void refresh_mapping(int i);	void mapping_expired(asio::error_code const& e, int i);	struct mapping	{		mapping()			: need_update(false)			, local_port(0)			, external_port(0)			, protocol(1)		{}		// indicates that the mapping has changed		// and needs an update		bool need_update;		// the time the port mapping will expire		ptime expires;		// the local port for this mapping. If this is set		// to 0, the mapping is not in use		int local_port;		// the external (on the NAT router) port		// for the mapping. This is the port we		// should announce to others		int external_port;		// 1 = udp, 2 = tcp		int protocol;	};	portmap_callback_t m_callback;	// 0 is tcp and 1 is udp	mapping m_mappings[2];		// the endpoint to the nat router	udp::endpoint m_nat_endpoint;	// this is the mapping that is currently	// being updated. It is -1 in case no	// mapping is being updated at the moment	int m_currently_mapping;	// current retry count	int m_retry_count;	// used to receive responses in		char m_response_buffer[16];	// the endpoint we received the message from	udp::endpoint m_remote;		// the udp socket used to communicate	// with the NAT router	datagram_socket m_socket;	// used to resend udp packets in case	// they time out	deadline_timer m_send_timer;	// timer used to refresh mappings	deadline_timer m_refresh_timer;		bool m_disabled;#if defined(TORRENT_LOGGING) || defined(TORRENT_VERBOSE_LOGGING)	std::ofstream m_log;#endif};}#endif

⌨️ 快捷键说明

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