summaryrefslogtreecommitdiff
path: root/lib/dotdot.h
Commit message (Collapse)AuthorAgeFilesLines
* copyright: fix year rangesDaniel Stenberg2020-11-051-1/+1
| | | | Follow-up from 4d2f8006777
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* copyrights: fix copyright year rangeDaniel Stenberg2019-11-081-1/+1
| | | | | | | | .. because checksrc's copyright year check stopped working. Ref: https://github.com/curl/curl/pull/4547 Closes https://github.com/curl/curl/pull/4549
* headers: end all headers with guard commentDaniel Gustafsson2018-10-231-1/+1
| | | | | | | | | | | Most headerfiles end with a /* <headerguard> */ comment, but it was missing from some. The comment isn't the most important part of our code documentation but consistency has an intrinsic value in itself. This adds header guard comments to the files that were lacking it. Closes #3158 Reviewed-by: Jay Satiro <raysatiro@yahoo.com> Reviewed-by: Daniel Stenberg <daniel@haxx.se>
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* copyright: Updated following recent editsSteve Holme2014-04-281-1/+1
|
* Added a few more const where possibleDan Fandrich2014-04-291-1/+1
|
* dotdot: introducing dot file path cleanupDaniel Stenberg2013-06-221-0/+25
RFC3986 details how a path part passed in as part of a URI should be "cleaned" from dot sequences before getting used. The described algorithm is now implemented in lib/dotdot.c with the accompanied test case in test 1395. Bug: http://curl.haxx.se/bug/view.cgi?id=1200 Reported-by: Alex Vinnik