2006-11-26 18:44:51 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2006, MassaRoddel, 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-03-17 18:15:16 +01:00
|
|
|
#include "libtorrent/pch.hpp"
|
|
|
|
|
2006-11-26 18:44:51 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "libtorrent/peer_connection.hpp"
|
|
|
|
#include "libtorrent/bt_peer_connection.hpp"
|
|
|
|
#include "libtorrent/bencode.hpp"
|
|
|
|
#include "libtorrent/torrent.hpp"
|
|
|
|
#include "libtorrent/extensions.hpp"
|
2008-12-01 09:48:54 +01:00
|
|
|
#include "libtorrent/broadcast_socket.hpp"
|
2006-11-26 18:44:51 +01:00
|
|
|
|
|
|
|
#include "libtorrent/extensions/ut_pex.hpp"
|
|
|
|
|
|
|
|
namespace libtorrent { namespace
|
|
|
|
{
|
|
|
|
const char extension_name[] = "ut_pex";
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
extension_index = 1,
|
|
|
|
max_peer_entries = 100
|
|
|
|
};
|
|
|
|
|
2007-03-28 22:23:30 +02:00
|
|
|
bool send_peer(peer_connection const& p)
|
|
|
|
{
|
|
|
|
// don't send out peers that we haven't connected to
|
|
|
|
// (that have connected to us)
|
|
|
|
if (!p.is_local()) return false;
|
|
|
|
// don't send out peers that we haven't successfully connected to
|
|
|
|
if (p.is_connecting()) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-11-26 18:44:51 +01:00
|
|
|
struct ut_pex_plugin: torrent_plugin
|
|
|
|
{
|
2008-11-26 09:27:57 +01:00
|
|
|
ut_pex_plugin(torrent& t): m_torrent(t), m_1_minute(55), m_peers_in_message(0) {}
|
2006-11-26 18:44:51 +01:00
|
|
|
|
|
|
|
virtual boost::shared_ptr<peer_plugin> new_connection(peer_connection* pc);
|
|
|
|
|
|
|
|
std::vector<char>& get_ut_pex_msg()
|
|
|
|
{
|
|
|
|
return m_ut_pex_msg;
|
|
|
|
}
|
|
|
|
|
2008-11-26 09:27:57 +01:00
|
|
|
int peers_in_msg() const
|
|
|
|
{
|
|
|
|
return m_peers_in_message;
|
|
|
|
}
|
|
|
|
|
2006-11-26 18:44:51 +01:00
|
|
|
// the second tick of the torrent
|
|
|
|
// each minute the new lists of "added" + "added.f" and "dropped"
|
|
|
|
// are calculated here and the pex message is created
|
|
|
|
// each peer connection will use this message
|
|
|
|
// max_peer_entries limits the packet size
|
|
|
|
virtual void tick()
|
|
|
|
{
|
|
|
|
if (++m_1_minute < 60) return;
|
|
|
|
|
|
|
|
m_1_minute = 0;
|
2007-03-28 03:06:15 +02:00
|
|
|
|
|
|
|
entry pex;
|
|
|
|
std::string& pla = pex["added"].string();
|
|
|
|
std::string& pld = pex["dropped"].string();
|
|
|
|
std::string& plf = pex["added.f"].string();
|
|
|
|
std::back_insert_iterator<std::string> pla_out(pla);
|
|
|
|
std::back_insert_iterator<std::string> pld_out(pld);
|
|
|
|
std::back_insert_iterator<std::string> plf_out(plf);
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
std::string& pla6 = pex["added6"].string();
|
|
|
|
std::string& pld6 = pex["dropped6"].string();
|
|
|
|
std::string& plf6 = pex["added6.f"].string();
|
2007-09-19 23:54:26 +02:00
|
|
|
std::back_insert_iterator<std::string> pla6_out(pla6);
|
|
|
|
std::back_insert_iterator<std::string> pld6_out(pld6);
|
|
|
|
std::back_insert_iterator<std::string> plf6_out(plf6);
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-03-28 03:06:15 +02:00
|
|
|
|
|
|
|
std::set<tcp::endpoint> dropped;
|
|
|
|
m_old_peers.swap(dropped);
|
|
|
|
|
2008-11-26 09:27:57 +01:00
|
|
|
m_peers_in_message = 0;
|
2007-03-28 03:06:15 +02:00
|
|
|
int num_added = 0;
|
2006-11-28 19:18:37 +01:00
|
|
|
for (torrent::peer_iterator i = m_torrent.begin()
|
|
|
|
, end(m_torrent.end()); i != end; ++i)
|
2007-03-28 22:23:30 +02:00
|
|
|
{
|
2008-05-12 08:03:31 +02:00
|
|
|
peer_connection* peer = *i;
|
2007-10-31 10:48:20 +01:00
|
|
|
if (!send_peer(*peer)) continue;
|
2007-03-28 03:06:15 +02:00
|
|
|
|
2007-10-31 10:48:20 +01:00
|
|
|
tcp::endpoint const& remote = peer->remote();
|
|
|
|
m_old_peers.insert(remote);
|
2007-03-28 03:06:15 +02:00
|
|
|
|
2007-10-31 10:48:20 +01:00
|
|
|
std::set<tcp::endpoint>::iterator di = dropped.find(remote);
|
2007-03-28 03:06:15 +02:00
|
|
|
if (di == dropped.end())
|
|
|
|
{
|
|
|
|
// don't write too big of a package
|
2007-06-06 02:41:20 +02:00
|
|
|
if (num_added >= max_peer_entries) break;
|
|
|
|
|
|
|
|
// only send proper bittorrent peers
|
2007-10-31 10:48:20 +01:00
|
|
|
bt_peer_connection* p = dynamic_cast<bt_peer_connection*>(peer);
|
2007-06-06 02:41:20 +02:00
|
|
|
if (!p) continue;
|
2007-03-28 03:06:15 +02:00
|
|
|
|
|
|
|
// no supported flags to set yet
|
|
|
|
// 0x01 - peer supports encryption
|
|
|
|
// 0x02 - peer is a seed
|
2007-06-06 02:41:20 +02:00
|
|
|
int flags = p->is_seed() ? 2 : 0;
|
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
flags |= p->supports_encryption() ? 1 : 0;
|
|
|
|
#endif
|
2007-09-19 23:54:26 +02:00
|
|
|
// i->first was added since the last time
|
2007-10-31 10:48:20 +01:00
|
|
|
if (remote.address().is_v4())
|
2007-09-19 23:54:26 +02:00
|
|
|
{
|
2007-10-31 10:48:20 +01:00
|
|
|
detail::write_endpoint(remote, pla_out);
|
2007-09-19 23:54:26 +02:00
|
|
|
detail::write_uint8(flags, plf_out);
|
|
|
|
}
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2007-09-19 23:54:26 +02:00
|
|
|
else
|
|
|
|
{
|
2007-10-31 10:48:20 +01:00
|
|
|
detail::write_endpoint(remote, pla6_out);
|
2007-09-19 23:54:26 +02:00
|
|
|
detail::write_uint8(flags, plf6_out);
|
|
|
|
}
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-03-28 03:06:15 +02:00
|
|
|
++num_added;
|
2008-11-26 09:27:57 +01:00
|
|
|
++m_peers_in_message;
|
2007-03-28 03:06:15 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// this was in the previous message
|
|
|
|
// so, it wasn't dropped
|
|
|
|
dropped.erase(di);
|
|
|
|
}
|
2006-11-26 18:44:51 +01:00
|
|
|
}
|
|
|
|
|
2007-03-28 03:06:15 +02:00
|
|
|
for (std::set<tcp::endpoint>::const_iterator i = dropped.begin()
|
2007-10-31 10:48:20 +01:00
|
|
|
, end(dropped.end()); i != end; ++i)
|
2006-11-26 18:44:51 +01:00
|
|
|
{
|
2007-09-19 23:54:26 +02:00
|
|
|
if (i->address().is_v4())
|
|
|
|
detail::write_endpoint(*i, pld_out);
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2007-09-19 23:54:26 +02:00
|
|
|
else
|
|
|
|
detail::write_endpoint(*i, pld6_out);
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2008-11-26 09:27:57 +01:00
|
|
|
++m_peers_in_message;
|
2006-11-26 18:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
m_ut_pex_msg.clear();
|
|
|
|
bencode(std::back_inserter(m_ut_pex_msg), pex);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
torrent& m_torrent;
|
|
|
|
|
2007-03-28 03:06:15 +02:00
|
|
|
std::set<tcp::endpoint> m_old_peers;
|
2006-11-26 18:44:51 +01:00
|
|
|
int m_1_minute;
|
|
|
|
std::vector<char> m_ut_pex_msg;
|
2008-11-26 09:27:57 +01:00
|
|
|
int m_peers_in_message;
|
2006-11-26 18:44:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct ut_pex_peer_plugin : peer_plugin
|
|
|
|
{
|
|
|
|
ut_pex_peer_plugin(torrent& t, peer_connection& pc, ut_pex_plugin& tp)
|
|
|
|
: m_torrent(t)
|
|
|
|
, m_pc(pc)
|
|
|
|
, m_tp(tp)
|
2007-10-31 21:30:09 +01:00
|
|
|
, m_1_minute(55)
|
2006-11-26 18:44:51 +01:00
|
|
|
, m_message_index(0)
|
2007-03-28 22:23:30 +02:00
|
|
|
, m_first_time(true)
|
2006-11-26 18:44:51 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
virtual void add_handshake(entry& h)
|
|
|
|
{
|
|
|
|
entry& messages = h["m"];
|
|
|
|
messages[extension_name] = extension_index;
|
|
|
|
}
|
|
|
|
|
2008-07-01 10:04:12 +02:00
|
|
|
virtual bool on_extension_handshake(lazy_entry const& h)
|
2006-11-26 18:44:51 +01:00
|
|
|
{
|
2007-12-30 10:41:26 +01:00
|
|
|
m_message_index = 0;
|
2008-07-01 10:04:12 +02:00
|
|
|
if (h.type() != lazy_entry::dict_t) return false;
|
|
|
|
lazy_entry const* messages = h.dict_find("m");
|
|
|
|
if (!messages || messages->type() != lazy_entry::dict_t) return false;
|
2006-11-26 18:44:51 +01:00
|
|
|
|
2008-07-01 10:04:12 +02:00
|
|
|
int index = messages->dict_find_int_value(extension_name, -1);
|
|
|
|
if (index == -1) return false;
|
|
|
|
m_message_index = index;
|
2007-12-30 10:41:26 +01:00
|
|
|
return true;
|
2006-11-26 18:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool on_extended(int length, int msg, buffer::const_interval body)
|
|
|
|
{
|
|
|
|
if (msg != extension_index) return false;
|
|
|
|
if (m_message_index == 0) return false;
|
|
|
|
|
|
|
|
if (length > 500 * 1024)
|
2008-04-07 05:31:41 +02:00
|
|
|
{
|
2008-06-24 00:00:27 +02:00
|
|
|
m_pc.disconnect("peer exchange message larger than 500 kB", 2);
|
2008-04-07 05:31:41 +02:00
|
|
|
return true;
|
|
|
|
}
|
2006-11-26 18:44:51 +01:00
|
|
|
|
|
|
|
if (body.left() < length) return true;
|
|
|
|
|
2008-07-01 11:02:03 +02:00
|
|
|
lazy_entry pex_msg;
|
|
|
|
int ret = lazy_bdecode(body.begin, body.end, pex_msg);
|
2008-11-26 09:27:57 +01:00
|
|
|
if (ret != 0 || pex_msg.type() != lazy_entry::dict_t)
|
2008-06-24 00:00:27 +02:00
|
|
|
{
|
|
|
|
m_pc.disconnect("invalid bencoding in ut_metadata message", 2);
|
|
|
|
return true;
|
|
|
|
}
|
2007-12-30 10:41:26 +01:00
|
|
|
|
2008-07-01 11:02:03 +02:00
|
|
|
lazy_entry const* p = pex_msg.dict_find("added");
|
|
|
|
lazy_entry const* pf = pex_msg.dict_find("added.f");
|
2007-12-30 10:41:26 +01:00
|
|
|
|
2008-07-01 11:02:03 +02:00
|
|
|
if (p != 0
|
|
|
|
&& pf != 0
|
|
|
|
&& p->type() == lazy_entry::string_t
|
|
|
|
&& pf->type() == lazy_entry::string_t
|
|
|
|
&& pf->string_length() == p->string_length() / 6)
|
2007-08-08 23:22:59 +02:00
|
|
|
{
|
2008-07-01 11:02:03 +02:00
|
|
|
int num_peers = pf->string_length();
|
|
|
|
char const* in = p->string_ptr();
|
|
|
|
char const* fin = pf->string_ptr();
|
2006-11-26 18:44:51 +01:00
|
|
|
|
2007-08-08 23:22:59 +02:00
|
|
|
peer_id pid(0);
|
|
|
|
policy& p = m_torrent.get_policy();
|
|
|
|
for (int i = 0; i < num_peers; ++i)
|
|
|
|
{
|
|
|
|
tcp::endpoint adr = detail::read_v4_endpoint<tcp::endpoint>(in);
|
2008-07-01 11:02:03 +02:00
|
|
|
char flags = *fin++;
|
2008-12-01 09:48:54 +01:00
|
|
|
// ignore local addresses unless the peer is local to us
|
|
|
|
if (is_local(adr.address()) && !is_local(m_pc.remote().address())) continue;
|
2007-08-08 23:22:59 +02:00
|
|
|
p.peer_from_tracker(adr, pid, peer_info::pex, flags);
|
|
|
|
}
|
|
|
|
}
|
2007-12-30 10:41:26 +01:00
|
|
|
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2008-07-01 11:02:03 +02:00
|
|
|
lazy_entry const* p6 = pex_msg.dict_find("added6");
|
|
|
|
lazy_entry const* p6f = pex_msg.dict_find("added6.f");
|
|
|
|
if (p6 != 0
|
|
|
|
&& p6f != 0
|
|
|
|
&& p6->type() == lazy_entry::string_t
|
|
|
|
&& p6f->type() == lazy_entry::string_t
|
|
|
|
&& p6f->string_length() == p6->string_length() / 18)
|
2006-11-26 18:44:51 +01:00
|
|
|
{
|
2008-07-01 11:02:03 +02:00
|
|
|
int num_peers = p6f->string_length();
|
|
|
|
char const* in = p6->string_ptr();
|
|
|
|
char const* fin = p6f->string_ptr();
|
2007-12-30 10:41:26 +01:00
|
|
|
|
|
|
|
peer_id pid(0);
|
|
|
|
policy& p = m_torrent.get_policy();
|
|
|
|
for (int i = 0; i < num_peers; ++i)
|
|
|
|
{
|
|
|
|
tcp::endpoint adr = detail::read_v6_endpoint<tcp::endpoint>(in);
|
2008-07-01 11:02:03 +02:00
|
|
|
char flags = *fin++;
|
2008-12-01 09:48:54 +01:00
|
|
|
// ignore local addresses unless the peer is local to us
|
|
|
|
if (is_local(adr.address()) && !is_local(m_pc.remote().address())) continue;
|
2007-12-30 10:41:26 +01:00
|
|
|
p.peer_from_tracker(adr, pid, peer_info::pex, flags);
|
|
|
|
}
|
2007-08-08 23:22:59 +02:00
|
|
|
}
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-03-28 03:06:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
2006-11-26 18:44:51 +01:00
|
|
|
|
|
|
|
// the peers second tick
|
|
|
|
// every minute we send a pex message
|
|
|
|
virtual void tick()
|
|
|
|
{
|
|
|
|
if (!m_message_index) return; // no handshake yet
|
|
|
|
if (++m_1_minute <= 60) return;
|
|
|
|
|
2007-03-28 22:23:30 +02:00
|
|
|
if (m_first_time)
|
|
|
|
{
|
|
|
|
send_ut_peer_list();
|
|
|
|
m_first_time = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
send_ut_peer_diff();
|
|
|
|
}
|
2006-11-26 18:44:51 +01:00
|
|
|
m_1_minute = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2007-03-28 22:23:30 +02:00
|
|
|
void send_ut_peer_diff()
|
|
|
|
{
|
2008-11-26 09:27:57 +01:00
|
|
|
// if there's no change in out peer set, don't send anything
|
|
|
|
if (m_tp.peers_in_msg() == 0) return;
|
|
|
|
|
2007-03-28 22:23:30 +02:00
|
|
|
std::vector<char> const& pex_msg = m_tp.get_ut_pex_msg();
|
|
|
|
|
|
|
|
buffer::interval i = m_pc.allocate_send_buffer(6 + pex_msg.size());
|
|
|
|
|
|
|
|
detail::write_uint32(1 + 1 + pex_msg.size(), i.begin);
|
|
|
|
detail::write_uint8(bt_peer_connection::msg_extended, i.begin);
|
|
|
|
detail::write_uint8(m_message_index, i.begin);
|
|
|
|
std::copy(pex_msg.begin(), pex_msg.end(), i.begin);
|
|
|
|
i.begin += pex_msg.size();
|
|
|
|
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(i.begin == i.end);
|
2007-03-28 22:23:30 +02:00
|
|
|
m_pc.setup_send();
|
|
|
|
}
|
|
|
|
|
2006-11-26 18:44:51 +01:00
|
|
|
void send_ut_peer_list()
|
|
|
|
{
|
2007-03-28 22:23:30 +02:00
|
|
|
entry pex;
|
|
|
|
// leave the dropped string empty
|
|
|
|
pex["dropped"].string();
|
|
|
|
std::string& pla = pex["added"].string();
|
|
|
|
std::string& plf = pex["added.f"].string();
|
2009-04-04 18:59:53 +02:00
|
|
|
std::back_insert_iterator<std::string> pla_out(pla);
|
|
|
|
std::back_insert_iterator<std::string> plf_out(plf);
|
|
|
|
|
|
|
|
#if TORRENT_USE_IPV6
|
2007-09-19 23:54:26 +02:00
|
|
|
pex["dropped6"].string();
|
|
|
|
std::string& pla6 = pex["added6"].string();
|
|
|
|
std::string& plf6 = pex["added6.f"].string();
|
|
|
|
std::back_insert_iterator<std::string> pla6_out(pla6);
|
|
|
|
std::back_insert_iterator<std::string> plf6_out(plf6);
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-03-28 22:23:30 +02:00
|
|
|
|
|
|
|
int num_added = 0;
|
|
|
|
for (torrent::peer_iterator i = m_torrent.begin()
|
|
|
|
, end(m_torrent.end()); i != end; ++i)
|
|
|
|
{
|
2007-10-31 10:48:20 +01:00
|
|
|
peer_connection* peer = *i;
|
|
|
|
if (!send_peer(*peer)) continue;
|
2007-03-28 22:23:30 +02:00
|
|
|
|
|
|
|
// don't write too big of a package
|
2007-06-06 02:41:20 +02:00
|
|
|
if (num_added >= max_peer_entries) break;
|
|
|
|
|
|
|
|
// only send proper bittorrent peers
|
2007-10-31 10:48:20 +01:00
|
|
|
bt_peer_connection* p = dynamic_cast<bt_peer_connection*>(peer);
|
2007-06-06 02:41:20 +02:00
|
|
|
if (!p) continue;
|
2007-03-28 22:23:30 +02:00
|
|
|
|
|
|
|
// no supported flags to set yet
|
|
|
|
// 0x01 - peer supports encryption
|
|
|
|
// 0x02 - peer is a seed
|
2007-06-06 02:41:20 +02:00
|
|
|
int flags = p->is_seed() ? 2 : 0;
|
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
flags |= p->supports_encryption() ? 1 : 0;
|
|
|
|
#endif
|
2007-10-31 10:48:20 +01:00
|
|
|
tcp::endpoint const& remote = peer->remote();
|
2007-09-19 23:54:26 +02:00
|
|
|
// i->first was added since the last time
|
2007-10-31 10:48:20 +01:00
|
|
|
if (remote.address().is_v4())
|
2007-09-19 23:54:26 +02:00
|
|
|
{
|
2007-10-31 10:48:20 +01:00
|
|
|
detail::write_endpoint(remote, pla_out);
|
2007-09-19 23:54:26 +02:00
|
|
|
detail::write_uint8(flags, plf_out);
|
|
|
|
}
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2007-09-19 23:54:26 +02:00
|
|
|
else
|
|
|
|
{
|
2007-10-31 10:48:20 +01:00
|
|
|
detail::write_endpoint(remote, pla6_out);
|
2007-09-19 23:54:26 +02:00
|
|
|
detail::write_uint8(flags, plf6_out);
|
|
|
|
}
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-03-28 22:23:30 +02:00
|
|
|
++num_added;
|
|
|
|
}
|
|
|
|
std::vector<char> pex_msg;
|
|
|
|
bencode(std::back_inserter(pex_msg), pex);
|
2006-11-26 18:44:51 +01:00
|
|
|
|
|
|
|
buffer::interval i = m_pc.allocate_send_buffer(6 + pex_msg.size());
|
|
|
|
|
|
|
|
detail::write_uint32(1 + 1 + pex_msg.size(), i.begin);
|
|
|
|
detail::write_uint8(bt_peer_connection::msg_extended, i.begin);
|
|
|
|
detail::write_uint8(m_message_index, i.begin);
|
|
|
|
std::copy(pex_msg.begin(), pex_msg.end(), i.begin);
|
|
|
|
i.begin += pex_msg.size();
|
|
|
|
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(i.begin == i.end);
|
2006-11-26 18:44:51 +01:00
|
|
|
m_pc.setup_send();
|
|
|
|
}
|
|
|
|
|
|
|
|
torrent& m_torrent;
|
|
|
|
peer_connection& m_pc;
|
|
|
|
ut_pex_plugin& m_tp;
|
|
|
|
int m_1_minute;
|
|
|
|
int m_message_index;
|
2007-03-28 22:23:30 +02:00
|
|
|
|
|
|
|
// this is initialized to true, and set to
|
|
|
|
// false after the first pex message has been sent.
|
|
|
|
// it is used to know if a diff message or a full
|
|
|
|
// message should be sent.
|
|
|
|
bool m_first_time;
|
2006-11-26 18:44:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
boost::shared_ptr<peer_plugin> ut_pex_plugin::new_connection(peer_connection* pc)
|
|
|
|
{
|
2007-04-02 22:00:24 +02:00
|
|
|
bt_peer_connection* c = dynamic_cast<bt_peer_connection*>(pc);
|
|
|
|
if (!c) return boost::shared_ptr<peer_plugin>();
|
2006-11-26 18:44:51 +01:00
|
|
|
return boost::shared_ptr<peer_plugin>(new ut_pex_peer_plugin(m_torrent
|
|
|
|
, *pc, *this));
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
2007-09-14 02:11:33 +02:00
|
|
|
boost::shared_ptr<torrent_plugin> create_ut_pex_plugin(torrent* t, void*)
|
2006-11-26 18:44:51 +01:00
|
|
|
{
|
|
|
|
if (t->torrent_file().priv())
|
|
|
|
{
|
|
|
|
return boost::shared_ptr<torrent_plugin>();
|
|
|
|
}
|
|
|
|
return boost::shared_ptr<torrent_plugin>(new ut_pex_plugin(*t));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|