aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc-runserver/httpd.c
Commit message (Collapse)AuthorAgeFilesLines
* *: updated copyrightRafael G. Martins2017-02-251-1/+1
|
* *: binaries should always return 3 on errors, for consistency.Rafael G. Martins2016-12-261-9/+9
| | | | | | We used to return 1 or 2 in case of errors, with no special meaning, other than "something is wrong", but these codes are reserved. Now we always return 3.
* fixed includesRafael G. Martins2016-11-191-2/+0
|
* runserver: blogc/loader: improve strto*l handlingRafael G. Martins2016-10-141-0/+5
|
* *: fixed includesRafael G. Martins2016-10-071-4/+0
|
* runserver: always reply with content-lengthRafael G. Martins2016-09-271-2/+4
|
* runserver: implemented a thread pool and fixed few bugsRafael G. Martins2016-09-251-12/+60
|
* runserver: silent a few warningsRafael G. Martins2016-09-251-4/+12
|
* runserver: reimplemented http server without libeventRafael G. Martins2016-09-251-0/+254
yeah, this patch implements a "complete" http server for static files. It is not the best code possible, and would be easily DDoS'able if used in production, as it spawns a thread for each request, without limiting. I'm sickish and this is the best code I can deliver now. At least it works! ;)