about summary refs log tree commit diff
path: root/src/libutil/serialise.hh
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-05-21T22·26-0500
committerWill Dietz <w@wdtz.org>2018-05-21T22·30-0500
commitb08923b4a06cf585b038e73cc277fccff8ce9b58 (patch)
tree71d65f60a2cdc742ac741e7be384ce57a39dc229 /src/libutil/serialise.hh
parent966407bcf1cf86de508b20fef43cffb81d8a87dc (diff)
serialise: fix buffer size used, hide method for internal use only
Fixes #2169.
Diffstat (limited to 'src/libutil/serialise.hh')
-rw-r--r--src/libutil/serialise.hh9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/libutil/serialise.hh b/src/libutil/serialise.hh
index 6e703c52a1..14b62fdb67 100644
--- a/src/libutil/serialise.hh
+++ b/src/libutil/serialise.hh
@@ -77,10 +77,12 @@ struct BufferedSource : Source
 
     size_t read(unsigned char * data, size_t len) override;
 
-    /* Underlying read call, to be overridden. */
-    virtual size_t readUnbuffered(unsigned char * data, size_t len) = 0;
 
     bool hasData();
+
+protected:
+    /* Underlying read call, to be overridden. */
+    virtual size_t readUnbuffered(unsigned char * data, size_t len) = 0;
 };
 
 
@@ -134,8 +136,9 @@ struct FdSource : BufferedSource
         return *this;
     }
 
-    size_t readUnbuffered(unsigned char * data, size_t len) override;
     bool good() override;
+protected:
+    size_t readUnbuffered(unsigned char * data, size_t len) override;
 private:
     bool _good = true;
 };