2004-01-31 11:46:15 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, 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 <string>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "libtorrent/peer_id.hpp"
|
|
|
|
#include "libtorrent/tracker_manager.hpp"
|
2005-11-01 19:30:39 +01:00
|
|
|
#include "libtorrent/config.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;
|
|
|
|
class connection_queue;
|
2008-03-21 10:04:24 +01:00
|
|
|
struct session_settings;
|
2008-01-31 09:24:01 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
class TORRENT_EXPORT http_tracker_connection
|
|
|
|
: 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
|
2007-05-05 02:29:33 +02:00
|
|
|
, connection_queue& cc
|
2006-04-25 23:04:48 +02:00
|
|
|
, tracker_manager& man
|
2004-07-25 22:57:44 +02:00
|
|
|
, tracker_request const& req
|
2007-03-02 19:40:02 +01:00
|
|
|
, address bind_infc
|
2004-09-16 03:14:16 +02:00
|
|
|
, boost::weak_ptr<request_callback> c
|
2006-05-21 01:24:19 +02:00
|
|
|
, session_settings const& stn
|
2007-04-25 20:26:35 +02:00
|
|
|
, proxy_settings const& ps
|
2004-02-22 23:40:45 +01:00
|
|
|
, std::string const& password = "");
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2007-10-26 09:14:19 +02:00
|
|
|
void close();
|
|
|
|
|
2004-01-31 11:46:15 +01:00
|
|
|
private:
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
boost::intrusive_ptr<http_tracker_connection> self()
|
|
|
|
{ return boost::intrusive_ptr<http_tracker_connection>(this); }
|
|
|
|
|
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
|
|
|
|
2008-01-31 09:24:01 +01:00
|
|
|
virtual void on_timeout() {}
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2008-01-31 09:24:01 +01:00
|
|
|
void parse(int status_code, const entry& e);
|
2007-12-30 02:57:57 +01:00
|
|
|
bool extract_peer_info(const entry& e, peer_entry& ret);
|
2004-01-31 11:46:15 +01: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;
|
2004-01-31 11:46:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_HTTP_TRACKER_CONNECTION_HPP_INCLUDED
|
2006-04-25 23:04:48 +02:00
|
|
|
|