You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nodejs
Buffer.readUInt32LE(5); Buffer.readUInt32LE();
In that example the buffer offset should now be set to 13. On the first read I am setting the offset to 5 and reading 4 bytes leaving the offset at 9.. then I read 4 more bytes which would leave it at 13. But I don't want to have to keep track of where the offset is while parsing a bunch of data. Surely there is a way to read the current offset and seek within the buffer.