diff --git a/ChangeLog b/ChangeLog index 7a40c87..e34b1fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +v2.1.1: + Fix inetd mode. + v2.1.0: Support for the Landlock LSM. After initial setup, sslh gives up all local file access rights. diff --git a/sslh-main.c b/sslh-main.c index b427dac..be46708 100644 --- a/sslh-main.c +++ b/sslh-main.c @@ -37,6 +37,7 @@ #include "common.h" #include "probe.h" #include "log.h" +#include "tcp-probe.h" /* Constants for options that have no one-character shorthand */ #define OPT_ONTIMEOUT 257 @@ -246,6 +247,7 @@ int main(int argc, char *argv[], char* envp[]) if (cfg.inetd) { close(fileno(stderr)); /* Make sure no error will go to client */ + tcp_init(); start_shoveler(0); exit(0); }