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

📄 udp_tracker_connection.hpp

📁 LINUX下
💻 HPP
字号:
/*Copyright (c) 2003, 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_UDP_TRACKER_CONNECTION_HPP_INCLUDED#define TORRENT_UDP_TRACKER_CONNECTION_HPP_INCLUDED#include <vector>#include <string>#include <utility>#include <ctime>#ifdef _MSC_VER#pragma warning(push, 1)#endif#include <boost/shared_ptr.hpp>#include <boost/cstdint.hpp>#ifdef _MSC_VER#pragma warning(pop)#endif#include "libtorrent/socket.hpp"#include "libtorrent/entry.hpp"#include "libtorrent/session_settings.hpp"#include "libtorrent/peer_id.hpp"#include "libtorrent/peer.hpp"#include "libtorrent/tracker_manager.hpp"#include "libtorrent/config.hpp"namespace libtorrent{	class TORRENT_EXPORT udp_tracker_connection: public tracker_connection	{	friend class tracker_manager;	public:		udp_tracker_connection(			asio::strand& str			, tracker_manager& man			, tracker_request const& req			, std::string const& hostname			, unsigned short port			, address bind_infc			, boost::weak_ptr<request_callback> c			, session_settings const& stn);		void close();	private:		enum action_t		{			action_connect,			action_announce,			action_scrape,			action_error		};		boost::intrusive_ptr<udp_tracker_connection> self()		{ return boost::intrusive_ptr<udp_tracker_connection>(this); }		void name_lookup(asio::error_code const& error, udp::resolver::iterator i);		void timeout(asio::error_code const& error);		void send_udp_connect();		void connect_response(asio::error_code const& error, std::size_t bytes_transferred);		void send_udp_announce();		void announce_response(asio::error_code const& error, std::size_t bytes_transferred);		void send_udp_scrape();		void scrape_response(asio::error_code const& error, std::size_t bytes_transferred);		virtual void on_timeout();		tracker_manager& m_man;		asio::strand& m_strand;		udp::resolver m_name_lookup;		datagram_socket m_socket;		udp::endpoint m_target;		udp::endpoint m_sender;		int m_transaction_id;		boost::int64_t m_connection_id;		session_settings const& m_settings;		int m_attempts;		std::vector<char> m_buffer;	};}#endif // TORRENT_UDP_TRACKER_CONNECTION_HPP_INCLUDED

⌨️ 快捷键说明

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