summaryrefslogtreecommitdiff
path: root/docs/BUFREF.md
Commit message (Collapse)AuthorAgeFilesLines
* docs: correct spelling errors and a broken linkNyholm2021-07-181-1/+1
| | | | | | | Update grammar and spelling in docs and source code comments. Closes: #7427 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
* docs: fix typosDaniel Gustafsson2021-05-311-3/+3
|
* bufref: buffer reference supportPatrick Monnerat2021-04-221-0/+81
A struct bufref holds a buffer pointer, a data size and a destructor. When freed or its contents are changed, the previous buffer is implicitly released by the associated destructor. The data size, although not used internally, allows binary data support. A unit test checks its handling methods: test 1661 Closes #6654