summaryrefslogtreecommitdiff
path: root/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'buffer.h')
-rw-r--r--buffer.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/buffer.h b/buffer.h
index 37bbc29..85f539b 100644
--- a/buffer.h
+++ b/buffer.h
@@ -36,6 +36,12 @@
class TunDevice;
class UDPPacketSource;
+namespace boost {
+ namespace serialization {
+ class access;
+ }
+}
+
class Buffer
{
public:
@@ -70,7 +76,10 @@ protected:
u_int8_t *buf_;
u_int32_t length_;
-
+private:
+ friend class boost::serialization::access;
+ template<class Archive>
+ void serialize(Archive & ar, const unsigned int version);
};
#endif