summaryrefslogtreecommitdiff
path: root/tests/unit/unit1650.c
Commit message (Collapse)AuthorAgeFilesLines
* scripts/copyright: .muse is .lift nowDaniel Stenberg2021-09-281-1/+1
| | | | And update 5 files with old copyright year range
* cleanup: constify unmodified static structsRikard Falkeborn2021-09-231-2/+2
| | | | | | | Constify a number of static structs that are never modified. Make them const to show this. Closes #7759
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* dynbuf: introduce internal generic dynamic buffer functionsDaniel Stenberg2020-05-041-2/+3
| | | | | | | | | | | | | 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
* headers: copyright range fixDaniel Stenberg2020-04-281-1/+1
|
* doh: Constify some input pointersRikard Falkeborn2020-04-281-4/+4
| | | | Closes #5306
* tests: fix build with `CURL_DISABLE_DOH`Marcel Raad2019-12-131-2/+2
| | | | Closes https://github.com/curl/curl/pull/4692
* tests: fix multiple may be used uninitialized warningsDaniel Stenberg2019-03-051-2/+2
|
* printf: fix format specifiersRikard Falkeborn2019-01-041-7/+7
| | | | Closes #3426
* snprintf: renamed and we now only use msnprintf()Daniel Stenberg2018-11-231-6/+6
| | | | | | | | | | | The function does not return the same value as snprintf() normally does, so readers may be mislead into thinking the code works differently than it actually does. A different function name makes this easier to detect. Reported-by: Tomas Hoger Assisted-by: Daniel Gustafsson Fixes #3296 Closes #3297
* unit1650: fix "null pointer passed as argument 1 to memcmp"Daniel Stenberg2018-10-291-1/+1
| | | | | | Detected by UndefinedBehaviorSanitizer Closes #3187
* doh: keep the IPv4 address in (original) network byte orderDaniel Stenberg2018-10-051-8/+8
| | | | | | | | Ideally this will fix the reversed order shown in SPARC tests: resp 8: Expected 127.0.0.1 got 1.0.0.127 Closes #3091
* test1650: make it depend on http/2Daniel Stenberg2018-10-011-0/+11
| | | | | | | Follow-up to 570008c99da0ccbb as it gets link errors. Reported-by: Michael Kaufmann Closes #3068
* unit1650: fix out of boundary accessDaniel Stenberg2018-09-231-4/+4
| | | | | Fixes #2987 Closes #3035
* DOH: add test case 1650 and 2100Daniel Stenberg2018-09-061-0/+283