Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor doc fix reported at [6d6e0b59fcb6f394]. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA3-256: |
943bb06ae0aafb07adc3cb843eee1334 |
User & Date: | stephan 2022-06-11 06:57:42 |
Context
2022-06-11
| ||
06:57 | Minor doc fix reported at [6d6e0b59fcb6f394]. ... (Leaf check-in: 943bb06ae0 user: stephan tags: trunk) | |
2022-06-09
| ||
00:57 | Added missing BOOLEAN qualifier to the --debug flag docs, per forum post [9b819e3c211abb1b]. ... (check-in: 085d72a3f9 user: stephan tags: trunk) | |
Changes
Changes to althttpd.c.
︙ | ︙ | |||
1856 1857 1858 1859 1860 1861 1862 | /* ** The following table contains 1 for all characters that are permitted in ** the part of the URL before the query parameters and fragment. ** ** Allowed characters: 0-9a-zA-Z,-./:_~ ** | | | 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 | /* ** The following table contains 1 for all characters that are permitted in ** the part of the URL before the query parameters and fragment. ** ** Allowed characters: 0-9a-zA-Z,-./:_~ ** ** Disallowed characters include: !"#$%&'()*+;<=>?@[\]^`{|} */ static const char allowedInName[] = { /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf */ /* 0x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, /* 3x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, |
︙ | ︙ |