CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2019/05/29 05:48:29
Modified files:
usr.sbin/relayd: parse.y relay.c relayd.c relayd.h
Log message:
Move relay_load_*() functions into relayd.c
Pass the *env as an explicit argument instead of using the global
pointer: The relay_load_certfiles() function is called early before
the *env is set up. This does not change anything in the current code
as *env is not used by anything in the function (not even
ssl_load_key() that is taking it as an argument) but it will be needed
by upcoming changes for SNI.
Ok rob@