diff --git a/contrib/backends/nntpchan-daemon/src/line.cpp b/contrib/backends/nntpchan-daemon/src/line.cpp index d9d9010..0b0eee3 100644 --- a/contrib/backends/nntpchan-daemon/src/line.cpp +++ b/contrib/backends/nntpchan-daemon/src/line.cpp @@ -1,5 +1,4 @@ #include "line.hpp" -#include namespace nntpchan { diff --git a/contrib/backends/nntpchan-daemon/src/nntp_handler.cpp b/contrib/backends/nntpchan-daemon/src/nntp_handler.cpp index a0ec1ba..2b9222c 100644 --- a/contrib/backends/nntpchan-daemon/src/nntp_handler.cpp +++ b/contrib/backends/nntpchan-daemon/src/nntp_handler.cpp @@ -59,7 +59,6 @@ namespace nntpchan if(end) { std::size_t diff = end - data ; - std::cerr << diff << std::endl; if(m_article) m_article->write(data, diff); ArticleObtained(); @@ -71,7 +70,6 @@ namespace nntpchan if(end) { std::size_t diff = end - data ; - std::cerr << diff << std::endl; if(m_article) m_article->write(data, diff); ArticleObtained(); diff --git a/contrib/backends/nntpchan-daemon/src/server.hpp b/contrib/backends/nntpchan-daemon/src/server.hpp index 34e20ef..aa0945b 100644 --- a/contrib/backends/nntpchan-daemon/src/server.hpp +++ b/contrib/backends/nntpchan-daemon/src/server.hpp @@ -56,7 +56,7 @@ namespace nntpchan uv_loop_t * m_loop; Server * m_parent; IConnHandler * m_handler; - char m_readbuff[4096]; + char m_readbuff[65536]; }; class Server