Add missing dynabuf_readstream member

fix #277
This commit is contained in:
Florian Behrens
2017-03-04 21:31:21 +01:00
committed by Vinnie Falco
parent 71db14bad4
commit 297374b487
2 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,7 @@
1.0.0-b31
* Tidy up build settings
* Add missing dynabuf_readstream member
WebSocket

View File

@ -145,6 +145,13 @@ public:
return next_layer_;
}
/// Get a const reference to the next layer.
next_layer_type const&
next_layer() const
{
return next_layer_;
}
/// Get a reference to the lowest layer.
lowest_layer_type&
lowest_layer()