tinywebd

changeset 14:362644b26a44

added Bugs section to the README file
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 19 Apr 2015 01:14:24 +0300
parents a9ed0b2260ee
children 4a25751fe61d
files README.rst
diffstat 1 files changed, 16 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- a/README.rst	Sun Apr 19 00:10:13 2015 +0300
     1.2 +++ b/README.rst	Sun Apr 19 01:14:24 2015 +0300
     1.3 @@ -22,3 +22,19 @@
     1.4  -----
     1.5  See ``src/main.c`` as an example on how to use libtinyweb, and read the header
     1.6  file ``libtinyweb/src/tinyweb.h`` which is very simple, and heavily commented.
     1.7 +
     1.8 +It will serve everything under the current working directory. Default port is
     1.9 +8080.
    1.10 +
    1.11 +Bugs
    1.12 +----
    1.13 +Issues that I intend to fix or improve at some point:
    1.14 +
    1.15 +- Only GET and HEAD HTTP requests are currently implemented.
    1.16 +- Doesn't support partial downloads.
    1.17 +- It's supposed to be cross platform, but it isn't yet (UNIX only).
    1.18 +
    1.19 +Issues that are the way they are by design:
    1.20 +
    1.21 +- Tinywebd is not really a daemon (doesn't release controlling terminal).
    1.22 +- Doesn't scale well to lots of simultaneous clients (to keep it simple).