adjust default read buffer size based on profiling

This commit is contained in:
Peter Thorson
2013-10-20 12:49:22 -05:00
parent 72a3bd6e4e
commit 1b453e4679
3 changed files with 3 additions and 3 deletions

View File

@@ -189,7 +189,7 @@ struct core {
websocketpp::log::alevel::all ^ websocketpp::log::alevel::devel;
///
static const size_t connection_read_buffer_size = 512;
static const size_t connection_read_buffer_size = 16384;
/// Drop connections immediately on protocol error.
/**

View File

@@ -190,7 +190,7 @@ struct core_client {
websocketpp::log::alevel::all ^ websocketpp::log::alevel::devel;
///
static const size_t connection_read_buffer_size = 512;
static const size_t connection_read_buffer_size = 16384;
/// Drop connections immediately on protocol error.
/**

View File

@@ -190,7 +190,7 @@ struct debug_core {
websocketpp::log::alevel::all;
///
static const size_t connection_read_buffer_size = 512;
static const size_t connection_read_buffer_size = 16384;
/// Drop connections immediately on protocol error.
/**