Browse Source

Merge pull request #262 from dryabov/dht_putdata_size

increase allowed size of putData request
miguelfreitas
miguelfreitas 10 years ago
parent
commit
e147c80d9e
  1. 2
      libtorrent/src/kademlia/node.cpp

2
libtorrent/src/kademlia/node.cpp

@ -1359,7 +1359,7 @@ void node_impl::incoming_request(msg const& m, entry& e) @@ -1359,7 +1359,7 @@ void node_impl::incoming_request(msg const& m, entry& e)
// pointer and length to the whole entry
std::pair<char const*, int> buf = msg_keys[mk_p]->data_section();
int maxSize = (multi) ? 512 : 8192; // single is bigger for avatar image etc
int maxSize = (multi) ? 768 : 8192; // single is bigger for avatar image etc
// Note: when increasing maxSize, check m_buf_size @ udp_socket.cpp.
if (buf.second > maxSize || buf.second <= 0)
{

Loading…
Cancel
Save