Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in comment. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
85008dde3d3c2ae0513acfb0fe7209c7 |
User & Date: | mistachkin 2013-01-05 17:56:35.335 |
Context
2013-01-05
| ||
18:22 | Fix one of the hyperlinks to mailing list archives on the support page. (check-in: 23c74f1ea7 user: drh tags: trunk) | |
17:56 | Fix typo in comment. (check-in: 85008dde3d user: mistachkin tags: trunk) | |
2013-01-04
| ||
14:05 | Fix the order of parameters in the documentation of the INSTR() function. (check-in: ffc982706c user: drh tags: trunk) | |
Changes
Changes to misc/althttpd.c.
1 2 3 4 5 6 7 8 9 | /* ** A small, simple HTTP server. ** ** Features: ** ** * Launched from inetd ** * One process per request ** * Deliver static content or run CGI ** * Virtual sites based on the "Host:" property of the HTTP header | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /* ** A small, simple HTTP server. ** ** Features: ** ** * Launched from inetd ** * One process per request ** * Deliver static content or run CGI ** * Virtual sites based on the "Host:" property of the HTTP header ** * Very small code base (1 file) to facilitate security auditing ** * Simple setup - no configuration files to mess with. ** ** This file implements a small and simple but secure and effective web ** server. There are no frills. Anything that could be reasonably ** omitted has been. ** ** Setup rules: |
︙ | ︙ |