Commit Briefs

Omar Polo

add missing include of ../config.h in regress/*.c

otherwise we get a nice 'no previous prototype' due to -Wmissing-prototypes.


Omar Polo

macos' clang is retarded

thinks rsa and ecdsa may be used un-initialized... if we enter the branch with fatalx(). sigh


Omar Polo

don't quote $5 when calling pkg-config

otherwise we fail the openssl test 'libcrypto libssl'


Omar Polo

use REGRESS_HOST to specify the host to listen to; use in CI

some CI envs don't like `listen on localhost' but tolerate INADDR_ANY or IN6ADDR_ANY_INIT.


Omar Polo

fix `listen on *'


Omar Polo

implement `listen on'

Listening by default on all the addresses is so bad I don't know why I haven't changed this before. Anyway. Add a `listen on $hostname port $port' syntax to the config file and deprecate the old "port" and "ipv6" global setting. Still try to honour them when no "listen on" directive is used for backward compatibily, but this will go away in the next next version hopefully. At the moment the `listen on' in server context don't filter the host, i.e. one can still reach a host from a address not specified in the corresponding `liste on', this will be added later.



Omar Polo

typo; use the `l' variable not `len'


Omar Polo

add missing -include of *.d files


Omar Polo

drop debug log





Omar Polo

drop `proc' pledge in the main process

unlike the name might suggest, proc_kill() doesn't use kill(2) so proc is not needed.


Omar Polo

add `release' target