Commits


gotwebd: garbage collect %token FCGI_SOCKET ok stsp@


remove fcgi_socket keyword from gotwebd.conf; "listen on" now implies it ok op@


allow multiple "listen on" statements per server in gotwebd.conf ok tracey


change gotwebd.conf fcgi socket syntax to "listen on 'foo' port 'bar'" ok op@


fix previous: store port number in host byte order, convert for struct sockaddr With the previous patch the listen port was correct, but the debug log output was still displaying the swapped port number. Now both listen behaviour and debug log output agree.


fix gotwebd default fcgi listen port byte-order (port 10275 -> port 9000) ok tracey


gotwebd: listen on localhost only by default ok tracey


gotwebd: don't listen on FCGI sockets when FCGI is not enabled ok tracey


gotwebd: do not allocate server/socket list heads separately ok millert@


gotwebd: do not allocate address list heads separately, this is unnecessary ok millert@


fix snprintf error handling follow the "proper secure idiom" described in the CAVEATS section of printf(3). reminded by tb@ and millert@


convert gotwebd.conf "bind interface IP/iface" to "listen on IP/iface" ok kn, tracey


make gotwebd start up without a config file ok tracey


move use of sin_len out of gotwebd's parse.y ok tracey


gotwebd: remove tls.h TLS isn't currently being used within gotwebd, so this include can be removed. Notice by naddy, and OK stsp@