summaryrefslogtreecommitdiff
path: root/lib/dynbuf.c
Commit message (Collapse)AuthorAgeFilesLines
* ngtcp2: convert to dynbufDaniel Stenberg2020-05-041-2/+1
| | | | Closes #5335
* dynbuf: introduce internal generic dynamic buffer functionsDaniel Stenberg2020-05-041-0/+228
A common set of functions instead of many separate implementations for creating buffers that can grow when appending data to them. Existing functionality has been ported over. In my early basic testing, the total number of allocations seem at roughly the same amount as before, possibly a few less. See docs/DYNBUF.md for a description of the API. Closes #5300