Hi all, In my proxy code, I have something that looks roughly like this:
if (TSIOBufferReaderAvail(reader) >= 10) { blk = TSIOBufferStart(buffer); ptr = (const uint8_t *)TSIOBufferBlockReadStart(blk, reader, &nbytes); TSReleaseAssert(nbytes >= 10); } Occasionally, the assertion will trigger; is that something that I should expect and handle? cheers, James