diff options
Diffstat (limited to 'source/ByteBuffer.h')
-rw-r--r-- | source/ByteBuffer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/ByteBuffer.h b/source/ByteBuffer.h index c0ffed43c..3981ab066 100644 --- a/source/ByteBuffer.h +++ b/source/ByteBuffer.h @@ -94,6 +94,9 @@ public: /// Restarts next reading operation at the start of the ringbuffer
void ResetRead(void);
+ /// Re-reads the data that has been read since the last commit to the current readpos. Used by ProtoProxy to duplicate communication
+ void ReadAgain(AString & a_Out);
+
protected:
char * m_Buffer;
int m_BufferSize; // Total size of the ringbuffer
|