aboutsummaryrefslogtreecommitdiff
path: root/web/apache/stream
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-19 20:48:09 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-19 20:53:18 +0300
commit6be5bc707876ece1cd09d7c304ba559512ef5257 (patch)
tree2287f09e4cc21f3d4e07bc6faf62543921822b2c /web/apache/stream
parent01adb23a543bc4c83ef9570117692261e88f61cd (diff)
Implement request body caching
Diffstat (limited to 'web/apache/stream')
-rw-r--r--web/apache/stream4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/apache/stream b/web/apache/stream
index 9230d1b..d4abb4e 100644
--- a/web/apache/stream
+++ b/web/apache/stream
@@ -113,7 +113,7 @@ namespace web
setg (p, p, p);
}
- private:
+ protected:
virtual int_type
underflow ()
{
@@ -138,7 +138,7 @@ namespace web
return traits_type::to_int_type (*gptr ());
}
- private:
+ protected:
size_t bufsize_;
size_t putback_;
std::vector<char> buf_;