744607a5cb
Version 5.0.1 - 8/2/2022 - 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 https://sourceforge.net/projects/uftp-multicast/files/Changes.txt/download Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
29 lines
776 B
Makefile
29 lines
776 B
Makefile
################################################################################
|
|
#
|
|
# uftp
|
|
#
|
|
################################################################################
|
|
|
|
UFTP_VERSION = 5.0.1
|
|
UFTP_SITE = http://sourceforge.net/projects/uftp-multicast/files/source-tar
|
|
UFTP_LICENSE = GPL-3.0+
|
|
UFTP_LICENSE_FILES = LICENSE.txt
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
UFTP_DEPENDENCIES += host-pkgconf openssl
|
|
UFTP_MAKE_OPTS += CRYPT_LIB="`$(PKG_CONFIG_HOST_BINARY) --libs libcrypto`"
|
|
else
|
|
UFTP_MAKE_OPTS += NO_ENCRYPTION=1
|
|
endif
|
|
|
|
define UFTP_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(UFTP_MAKE_OPTS)
|
|
endef
|
|
|
|
define UFTP_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(UFTP_MAKE_OPTS) \
|
|
DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|