2004-01-31 11:46:15 +01:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2003-2016, Arvid Norberg
|
2004-01-31 11:46:15 +01:00
|
|
|
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 <string>
|
2014-07-06 21:18:00 +02:00
|
|
|
#include <vector>
|
2004-01-31 11:46:15 +01:00
|
|
|
|
2015-04-21 03:16:28 +02:00
|
|
|
#include "libtorrent/aux_/disable_warnings_push.hpp"
|
2004-01-31 11:46:15 +01:00
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
2015-04-21 03:16:28 +02:00
|
|
|
#include "libtorrent/aux_/disable_warnings_pop.hpp"
|
2004-01-31 11:46:15 +01:00
|
|
|
|
2009-12-02 05:05:24 +01:00
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
#include "libtorrent/lazy_entry.hpp"
|
2004-01-31 11:46:15 +01:00
|
|
|
#include "libtorrent/peer_id.hpp"
|
|
|
|
#include "libtorrent/tracker_manager.hpp"
|
2009-08-20 05:19:12 +02:00
|
|
|
#include "libtorrent/i2p_stream.hpp"
|
2015-04-22 02:59:35 +02:00
|
|
|
#include "libtorrent/error_code.hpp"
|
2008-01-27 23:39:50 +01:00
|
|
|
|
2004-01-31 11:46:15 +01:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2008-03-21 10:03:25 +01:00
|
|
|
struct http_connection;
|
2008-01-31 09:24:01 +01:00
|
|
|
class entry;
|
|
|
|
class http_parser;
|
2015-04-22 02:59:35 +02:00
|
|
|
struct bdecode_node;
|
|
|
|
struct peer_entry;
|
|
|
|
|
2014-10-21 02:28:51 +02:00
|
|
|
namespace aux { struct session_settings; }
|
2008-01-31 09:24:01 +01:00
|
|
|
|
2012-03-20 04:53:07 +01:00
|
|
|
class TORRENT_EXTRA_EXPORT http_tracker_connection
|
2006-04-25 23:04:48 +02:00
|
|
|
: public tracker_connection
|
2004-01-31 11:46:15 +01:00
|
|
|
{
|
|
|
|
friend class tracker_manager;
|
|
|
|
public:
|
|
|
|
|
|
|
|
http_tracker_connection(
|
2008-01-08 06:47:43 +01:00
|
|
|
io_service& ios
|
2006-04-25 23:04:48 +02:00
|
|
|
, tracker_manager& man
|
2004-07-25 22:57:44 +02:00
|
|
|
, tracker_request const& req
|
2015-05-05 04:32:14 +02:00
|
|
|
, boost::weak_ptr<request_callback> c);
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2008-09-07 12:03:59 +02:00
|
|
|
void start();
|
2007-10-26 09:14:19 +02:00
|
|
|
void close();
|
|
|
|
|
2004-01-31 11:46:15 +01:00
|
|
|
private:
|
|
|
|
|
2014-10-20 22:44:05 +02:00
|
|
|
boost::shared_ptr<http_tracker_connection> shared_from_this()
|
|
|
|
{
|
|
|
|
return boost::static_pointer_cast<http_tracker_connection>(
|
|
|
|
tracker_connection::shared_from_this());
|
|
|
|
}
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void on_filter(http_connection& c, std::vector<tcp::endpoint>& endpoints);
|
2008-12-01 09:48:54 +01:00
|
|
|
void on_connect(http_connection& c);
|
2008-05-03 18:05:42 +02:00
|
|
|
void on_response(error_code const& ec, http_parser const& parser
|
2008-01-31 09:24:01 +01:00
|
|
|
, char const* data, int size);
|
2004-07-25 22:57:44 +02:00
|
|
|
|
2014-07-07 08:28:48 +02:00
|
|
|
virtual void on_timeout(error_code const&) {}
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2004-07-25 22:57:44 +02:00
|
|
|
tracker_manager& m_man;
|
2008-01-31 09:24:01 +01:00
|
|
|
boost::shared_ptr<http_connection> m_tracker_connection;
|
2008-12-01 09:48:54 +01:00
|
|
|
address m_tracker_ip;
|
2009-08-20 05:19:12 +02:00
|
|
|
#if TORRENT_USE_I2P
|
|
|
|
i2p_connection* m_i2p_conn;
|
|
|
|
#endif
|
2004-01-31 11:46:15 +01:00
|
|
|
};
|
|
|
|
|
2014-09-29 08:10:22 +02:00
|
|
|
TORRENT_EXTRA_EXPORT tracker_response parse_tracker_response(
|
|
|
|
char const* data, int size, error_code& ec
|
2015-06-27 23:30:00 +02:00
|
|
|
, int flags, sha1_hash scrape_ih);
|
2015-04-21 06:30:34 +02:00
|
|
|
|
|
|
|
TORRENT_EXTRA_EXPORT bool extract_peer_info(bdecode_node const& info
|
|
|
|
, peer_entry& ret, error_code& ec);
|
2004-01-31 11:46:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_HTTP_TRACKER_CONNECTION_HPP_INCLUDED
|
2006-04-25 23:04:48 +02:00
|
|
|
|