Skip to content

Commit

Permalink
package/inadyn: bump to v2.10.0
Browse files Browse the repository at this point in the history
Highligts include support for MbedTLS and a serious memory leak fix to
the GnuTLS backend.

Changes:
 - Add support for MbedTLS
 - Add support for per-provider interface to bind to
 - Use HTTP-only for api.ipify.org, default (fallback) checkip service

Fixes:
 - serious memory leak in GnuTLS backend
 - ca-trust-file has no effect for GnuTLS
 - handle easyDNS "no update required" as OK status
 - use configured server:port, don't force port 443 for HTTPS

(From https://github.com/troglobit/inadyn/releases/tag/v2.10.0)

Signed-off-by: Joachim Wiberg <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
  • Loading branch information
troglobit authored and tpetazzoni committed Nov 23, 2022
1 parent ce2db7b commit 6bab22c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package/inadyn/inadyn.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Upstream .sha256 from GitHub
sha256 7370eb7ad5d33a9cf2e7e4a6a86c09587fbf9592cd357c6f472c33f575bac26d inadyn-2.9.1.tar.gz
sha256 1727b6aae6727f99eba584e46950369d7b259d2ef09e5bc02566e9c3c1d6daf6 inadyn-2.10.0.tar.gz

# Locally computed
sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6 COPYING
4 changes: 3 additions & 1 deletion package/inadyn/inadyn.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
################################################################################

INADYN_VERSION = 2.9.1
INADYN_VERSION = 2.10.0
INADYN_SITE = https://github.com/troglobit/inadyn/releases/download/v$(INADYN_VERSION)
INADYN_LICENSE = GPL-2.0+
INADYN_LICENSE_FILES = COPYING
Expand All @@ -15,6 +15,8 @@ INADYN_CONF_OPTS += --enable-openssl
INADYN_DEPENDENCIES += openssl
else ifeq ($(BR2_PACKAGE_GNUTLS),y)
INADYN_DEPENDENCIES += gnutls
else ifeq ($BR2_PACKAGE_MBEDTLS, y)
INADYN_DEPENDENCIES += mbedtls
else
INADYN_CONF_OPTS += --disable-ssl
endif
Expand Down

0 comments on commit 6bab22c

Please sign in to comment.