diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-14 12:51:27 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-14 12:51:27 +0100 |
commit | 664676eedf15bfa9fcb339a32055ec86490d9934 (patch) | |
tree | e880957f65af0a24f94f93c065cd667e71558183 /src/ByteBuffer.h | |
parent | Fixed not getting XP from mobs. (diff) | |
parent | Merge pull request #419 from mc-server/redstoneloading (diff) | |
download | cuberite-664676eedf15bfa9fcb339a32055ec86490d9934.tar cuberite-664676eedf15bfa9fcb339a32055ec86490d9934.tar.gz cuberite-664676eedf15bfa9fcb339a32055ec86490d9934.tar.bz2 cuberite-664676eedf15bfa9fcb339a32055ec86490d9934.tar.lz cuberite-664676eedf15bfa9fcb339a32055ec86490d9934.tar.xz cuberite-664676eedf15bfa9fcb339a32055ec86490d9934.tar.zst cuberite-664676eedf15bfa9fcb339a32055ec86490d9934.zip |
Diffstat (limited to 'src/ByteBuffer.h')
-rw-r--r-- | src/ByteBuffer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ByteBuffer.h b/src/ByteBuffer.h index 95c690203..06c846fa9 100644 --- a/src/ByteBuffer.h +++ b/src/ByteBuffer.h @@ -42,6 +42,9 @@ public: /// Returns the number of bytes that are currently available for reading (may be less than UsedSpace due to some data having been read already) int GetReadableSpace(void) const; + /// Returns the current data start index. For debugging purposes. + int GetDataStart(void) const { return m_DataStart; } + /// Returns true if the specified amount of bytes are available for reading bool CanReadBytes(int a_Count) const; @@ -106,6 +109,9 @@ public: /// Reads all available data into a_Data void ReadAll(AString & a_Data); + /// Reads the specified number of bytes and writes it into the destinatio bytebuffer. Returns true on success. + bool ReadToByteBuffer(cByteBuffer & a_Dst, int a_NumBytes); + /// Removes the bytes that have been read from the ringbuffer void CommitRead(void); |