Commit fc6e14f9 authored by Ian Roddis's avatar Ian Roddis

Removing automatic flush until a better solution presents itself

parent 8d6b3545
...@@ -321,7 +321,6 @@ public: ...@@ -321,7 +321,6 @@ public:
os << std::hex << sz << crlf; os << std::hex << sz << crlf;
os.write(data, sz); os.write(data, sz);
os << crlf; os << crlf;
flush();
return sz; return sz;
} }
...@@ -378,7 +377,6 @@ ResponseStream& operator<<(ResponseStream& stream, const T& val) { ...@@ -378,7 +377,6 @@ ResponseStream& operator<<(ResponseStream& stream, const T& val) {
std::ostream os(&stream.buf_); std::ostream os(&stream.buf_);
os << std::hex << size(val) << crlf; os << std::hex << size(val) << crlf;
os << val << crlf; os << val << crlf;
stream.flush();
return stream; return stream;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment