summaryrefslogtreecommitdiff
path: root/indra/llmessage
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-04-11 19:42:32 -0700
committerRichard Linden <none@none>2013-04-11 19:42:32 -0700
commit493b84f2fc34ab1bb798b20c022be6edf036b3d7 (patch)
treea052293043390a7ff0250f2e8ac78bf33c8efe2a /indra/llmessage
parent9b48f536c112dc68f8cbda9870587f0d16b9bc9d (diff)
parent1459a412b9c9776daa7e6f3b5be35fe67970b3c5 (diff)
Automated merge with ssh://hg.lindenlab.com/richard/viewer-interesting-metrics
Diffstat (limited to 'indra/llmessage')
-rw-r--r--indra/llmessage/lldatapacker.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llmessage/lldatapacker.h b/indra/llmessage/lldatapacker.h
index b0a638c16e..226752d52e 100644
--- a/indra/llmessage/lldatapacker.h
+++ b/indra/llmessage/lldatapacker.h
@@ -170,6 +170,7 @@ public:
S32 getBufferSize() const { return mBufferSize; }
const U8* getBuffer() const { return mBufferp; }
void reset() { mCurBufferp = mBufferp; mWriteEnabled = (mCurBufferp != NULL); }
+ void shift(S32 offset) { reset(); mCurBufferp += offset;}
void freeBuffer() { delete [] mBufferp; mBufferp = mCurBufferp = NULL; mBufferSize = 0; mWriteEnabled = FALSE; }
void assignBuffer(U8 *bufferp, S32 size)
{