mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-03-09 12:01:04 +00:00
fix problem with dhtput > 2kb (for avatar)
This commit is contained in:
parent
878061317e
commit
7a72e63372
@ -1038,6 +1038,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
|
||||
// Note: when increasing maxSize, check m_buf_size @ udp_socket.cpp.
|
||||
if (buf.second > maxSize || buf.second <= 0)
|
||||
{
|
||||
incoming_error(e, "message too big");
|
||||
|
@ -95,7 +95,7 @@ udp_socket::udp_socket(asio::io_service& ios
|
||||
#endif
|
||||
#endif
|
||||
|
||||
m_buf_size = 2000;
|
||||
m_buf_size = 10000;
|
||||
m_new_buf_size = m_buf_size;
|
||||
m_buf = (char*)malloc(m_buf_size);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user