# HG changeset patch # User John Tsiombikas # Date 1429395264 -10800 # Node ID 362644b26a4460a97e0c94d826606046c9f00101 # Parent a9ed0b2260ee7ced0fa9726ed574bbf79df8dcd8 added Bugs section to the README file diff -r a9ed0b2260ee -r 362644b26a44 README.rst --- a/README.rst Sun Apr 19 00:10:13 2015 +0300 +++ b/README.rst Sun Apr 19 01:14:24 2015 +0300 @@ -22,3 +22,19 @@ ----- See ``src/main.c`` as an example on how to use libtinyweb, and read the header file ``libtinyweb/src/tinyweb.h`` which is very simple, and heavily commented. + +It will serve everything under the current working directory. Default port is +8080. + +Bugs +---- +Issues that I intend to fix or improve at some point: + +- Only GET and HEAD HTTP requests are currently implemented. +- Doesn't support partial downloads. +- It's supposed to be cross platform, but it isn't yet (UNIX only). + +Issues that are the way they are by design: + +- Tinywebd is not really a daemon (doesn't release controlling terminal). +- Doesn't scale well to lots of simultaneous clients (to keep it simple).