From de6d15c9fc95bf26bcbdbc6f1b0e46eb520b2631 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Sat, 28 Sep 2013 07:56:03 -0500 Subject: [PATCH] adds documentation notes about when fatal_error and eof methods showed up --- websocketpp/transport/iostream/connection.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/websocketpp/transport/iostream/connection.hpp b/websocketpp/transport/iostream/connection.hpp index 1fe9f7879e..7721b199b4 100644 --- a/websocketpp/transport/iostream/connection.hpp +++ b/websocketpp/transport/iostream/connection.hpp @@ -162,6 +162,8 @@ public: /** * Signals to the transport that data stream being read has reached EOF and * that no more bytes may be read or written to/from the transport. + * + * @since 0.3.0-alpha4 */ void eof() { // this serializes calls to external read. @@ -177,6 +179,8 @@ public: /** * Signals to the transport that a fatal data stream error has occurred and * that no more bytes may be read or written to/from the transport. + * + * @since 0.3.0-alpha4 */ void fatal_error() { // this serializes calls to external read.