From 4f660ec902323505fcbc3068a89d9afea7688bb6 Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Sun, 19 May 2024 15:06:16 +0300 Subject: [PATCH] sslh: update to v1.23.1 The sslh Makefile's default target "all" now also tries to compile a new version sslh-ev. To disable its compilation the Build/Compile is overridden and to call directly "make sslh-select" or "make sslh-fork" depending on CONFIG_SSLH_SELECT. Some changes from 001-configfile-fix.patch were applied to the upstream and we can remove them. The only left is a notice "sslh command line arguments override the config". Signed-off-by: Sergey Ponomarev --- net/sslh/Makefile | 14 ++++++++++++-- net/sslh/patches/001-configfile-fix.patch | 20 -------------------- 2 files changed, 12 insertions(+), 22 deletions(-) diff --git a/net/sslh/Makefile b/net/sslh/Makefile index e5ca4fe2a..9828adfe3 100644 --- a/net/sslh/Makefile +++ b/net/sslh/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sslh -PKG_VERSION:=v1.22c +PKG_VERSION:=v1.23.1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://rutschle.net/tech/sslh/ -PKG_HASH:=8e3742d14edf4119350cfdc7bb96b89134d9218eb6d2a6e1f70891ca18a649b1 +PKG_HASH:=2aac006b40e5ae90e3b0fccb44acc994174e24e64457f25041b06aa2433ae637 PKG_MAINTAINER:=Jonathan McCrohan PKG_LICENSE:=GPL-2.0-or-later @@ -48,6 +48,16 @@ endef MAKE_FLAGS += \ USELIBCAP=1 +define Build/Compile + +ifeq ($(CONFIG_SSLH_SELECT),y) + $(call Build/Compile/Default,sslh-select) +else + $(call Build/Compile/Default,sslh-fork) +endif + +endef + define Package/sslh/install $(INSTALL_DIR) $(1)/usr/sbin ifeq ($(CONFIG_SSLH_SELECT),y) diff --git a/net/sslh/patches/001-configfile-fix.patch b/net/sslh/patches/001-configfile-fix.patch index d9344cdaa..e1ed07344 100644 --- a/net/sslh/patches/001-configfile-fix.patch +++ b/net/sslh/patches/001-configfile-fix.patch @@ -8,23 +8,3 @@ # This is a basic configuration file that should provide # sensible values for "standard" setup. -@@ -15,15 +19,16 @@ chroot: "/var/empty"; - # Change hostname with your external address name. - listen: - ( -- { host: "thelonious"; port: "443"; } -+ { host: "0.0.0.0"; port: "443"; }, -+ { host: "[::]"; port: "443"; } - ); - - protocols: - ( - { name: "ssh"; service: "ssh"; host: "localhost"; port: "22"; fork: true; }, - { name: "openvpn"; host: "localhost"; port: "1194"; }, -- { name: "xmpp"; host: "localhost"; port: "5222"; }, -- { name: "http"; host: "localhost"; port: "80"; }, -+# { name: "xmpp"; host: "localhost"; port: "5222"; }, -+# { name: "http"; host: "localhost"; port: "80"; }, - { name: "tls"; host: "localhost"; port: "443"; log_level: 0; }, - { name: "anyprot"; host: "localhost"; port: "443"; } - );