Home

Traffic Server Software Developers Kit

IO Buffers

The IO buffer data structure is the building block of the vconnection abstraction. An IO buffer (INKIOBuffer) is composed of a list of buffer blocks that point to buffer data. Both the buffer block (INKIOBufferBlock) and buffer data (INKIOBufferData) data structures are reference-counted so that they can reside in multiple buffers at the same time. This makes it extremely efficient to copy data from one IO buffer to another via INKIOBufferCopy, since Traffic Server must only copy pointers and adjust reference counts appropriately and doesn't actually copy any data.

The IO buffer abstraction provides for a single writer and multiple readers. In order for the readers to have no knowledge of each other, they manipulate IO buffers through the INKIOBufferReader data structure. Since only a single writer is allowed, there is no corresponding INKIOBufferWriter data structure. The writer simply modifies the IO buffer directly. To see an example that illustrates how to use IOBuffers, refer to the sample code in the description of INKIOBufferBlockReadStart.

Additional information about IO buffer functions: