Commit Briefs

Omar Polo

typo in comment



Omar Polo

list instead of fixed-size array for vhosts and locations

saves some bytes of memory and removes the limit on the maximum number of vhosts and location blocks.



Omar Polo

typo


Omar Polo

fix signal handling so it works on linux too

it seems that linux calls the signal handlers even when we're waiting on sigwait for that signal. Work around that.




Omar Polo

refactoring: imsg everywhere

use imsg to handle ALL kinds of IPC in gmid. This simplifies and shorten the code, and makes everything more uniform too.


Omar Polo

split usage string into two lines


Omar Polo

give each server process its own socket for the executor

this fixes a bug introduced with the prefork mechanics: every server process shared the same socket, and this would cause a race condition when multiple server processes asked for a script cgi being executed. This gives each server process its own socket to talk to the executor, so the race cannot happen.


Omar Polo

move log_init & vars to gmid.c, retain logger_main in log.c

this is to let the regression suite compile


Omar Polo

moving logging to its own process


Omar Polo

fix various compilation errors

Include gmid.h as first header in every file, as it then includes config.h (that defines _GNU_SOURCE for instance). Fix also a warning about unsigned vs signed const char pointers in openssl.


Omar Polo

add newline after usage