/* Copyright (c) 2003-2018, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are 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, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef TORRENT_HTTP_TRACKER_CONNECTION_HPP_INCLUDED #define TORRENT_HTTP_TRACKER_CONNECTION_HPP_INCLUDED #include #include #include "libtorrent/config.hpp" #include "libtorrent/peer_id.hpp" #include "libtorrent/error_code.hpp" #include "libtorrent/tracker_manager.hpp" // for tracker_connection namespace libtorrent { class tracker_manager; struct http_connection; class http_parser; struct bdecode_node; struct peer_entry; class TORRENT_EXTRA_EXPORT http_tracker_connection : public tracker_connection { friend class tracker_manager; public: http_tracker_connection( io_service& ios , tracker_manager& man , tracker_request const& req , std::weak_ptr c); void start() override; void close() override; private: std::shared_ptr shared_from_this() { return std::static_pointer_cast( tracker_connection::shared_from_this()); } void on_filter(http_connection& c, std::vector& endpoints); void on_connect(http_connection& c); void on_response(error_code const& ec, http_parser const& parser , span data); void on_timeout(error_code const&) override {} std::shared_ptr m_tracker_connection; address m_tracker_ip; }; TORRENT_EXTRA_EXPORT tracker_response parse_tracker_response( span data, error_code& ec , int flags, sha1_hash const& scrape_ih); TORRENT_EXTRA_EXPORT bool extract_peer_info(bdecode_node const& info , peer_entry& ret, error_code& ec); } #endif // TORRENT_HTTP_TRACKER_CONNECTION_HPP_INCLUDED