From 415a574cca71c096db022af4404d7c2a3731df26 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 27 Dec 2008 17:00:06 +0000 Subject: [PATCH] tweaked send buffer sizes to make buffers addresses aligned --- include/libtorrent/aux_/session_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libtorrent/aux_/session_impl.hpp b/include/libtorrent/aux_/session_impl.hpp index 0cf48af76..02aa58821 100644 --- a/include/libtorrent/aux_/session_impl.hpp +++ b/include/libtorrent/aux_/session_impl.hpp @@ -109,7 +109,7 @@ namespace libtorrent { // the size of each allocation that is chained in the send buffer - enum { send_buffer_size = 200 }; + enum { send_buffer_size = 128 }; #ifdef TORRENT_DEBUG friend class ::libtorrent::peer_connection;