From 0a58426ed073d48533276688445df3777776886b Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Mon, 15 Aug 2022 14:49:07 +0800 Subject: uftp: upgrade 5.0 -> 5.0.1 Changelog: ========== -On very low speed transfers (<10Kbps) sessions would time out due to a very large interpacket transmission interval. Fixed by putting a lower limit on the advertised GRTT of of the interpacket transmission interval. -Sending of ABORT messages on early shutdown would sometimes fail due to OpenSSL cleanup functions running before application cleanup. Changed the ordering of atexit() handlers to ensure OpenSSL cleanup happens last. -Fixed missing timestamp update when clients read CONG_CTRL messages -Fix to GRTT handling on server to ensure it doesn't fall below minumim. -Fixed bypassed checking of existing files on client for backup -Various logging fixes Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-networking/recipes-support/uftp/uftp_5.0.1.bb | 16 ++++++++++++++++ meta-networking/recipes-support/uftp/uftp_5.0.bb | 16 ---------------- 2 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 meta-networking/recipes-support/uftp/uftp_5.0.1.bb delete mode 100644 meta-networking/recipes-support/uftp/uftp_5.0.bb (limited to 'meta-networking') diff --git a/meta-networking/recipes-support/uftp/uftp_5.0.1.bb b/meta-networking/recipes-support/uftp/uftp_5.0.1.bb new file mode 100644 index 0000000000..6d5cf4b628 --- /dev/null +++ b/meta-networking/recipes-support/uftp/uftp_5.0.1.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "Encrypted UDP based FTP with multicast" +HOMEPAGE = "https://sourceforge.net/projects/uftp-multicast" +SECTION = "libs/network" +LICENSE = "GPL-3.0-only" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=d32239bcb673463ab874e80d47fae504" + +UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/uftp-multicast/files/source-tar/" + +SRC_URI = "${SOURCEFORGE_MIRROR}/uftp-multicast/source-tar/uftp-${PV}.tar.gz" +SRC_URI[sha256sum] = "f0435fbc8e9ffa125e05600cb6c7fc933d7d587f5bae41b257267be4f2ce0e61" + +DEPENDS = "openssl" + +do_install () { + oe_runmake install DESTDIR=${D} +} diff --git a/meta-networking/recipes-support/uftp/uftp_5.0.bb b/meta-networking/recipes-support/uftp/uftp_5.0.bb deleted file mode 100644 index 301e0fa607..0000000000 --- a/meta-networking/recipes-support/uftp/uftp_5.0.bb +++ /dev/null @@ -1,16 +0,0 @@ -DESCRIPTION = "Encrypted UDP based FTP with multicast" -HOMEPAGE = "https://sourceforge.net/projects/uftp-multicast" -SECTION = "libs/network" -LICENSE = "GPL-3.0-only" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=d32239bcb673463ab874e80d47fae504" - -UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/uftp-multicast/files/source-tar/" - -SRC_URI = "${SOURCEFORGE_MIRROR}/uftp-multicast/source-tar/uftp-${PV}.tar.gz" -SRC_URI[sha256sum] = "562f71ea5a24b615eb491f5744bad01e9c2e58244c1d6252d5ae98d320d308e0" - -DEPENDS = "openssl" - -do_install () { - oe_runmake install DESTDIR=${D} -} -- cgit v1.2.3-54-g00ecf