tr143: Use multi-connections for curl based download/upload diagnostics

This commit is contained in:
Mohd Husaam Mehdi 2025-12-28 15:52:48 +05:30 committed by Vivek Kumar Dutta
parent 2bf491cca1
commit 26714a0a0b
No known key found for this signature in database
GPG key ID: 4E09F5AD8265FD4C
2 changed files with 4 additions and 4 deletions

View file

@ -5,13 +5,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=tr143
PKG_VERSION:=1.1.13
PKG_VERSION:=1.2.0
LOCAL_DEV:=0
ifneq ($(LOCAL_DEV),1)
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://dev.iopsys.eu/bbf/tr143d.git
PKG_SOURCE_VERSION:=be8ee7b6c52817914f66875d36061f2f62b80af8
PKG_SOURCE_VERSION:=ff3d6d20603c2444cae2a43cacd041b547747a92
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.zst
PKG_MIRROR_HASH:=skip
endif

View file

@ -7,11 +7,11 @@ set_tr143_diagnostic_defaults() {
uci -q -c /etc/bbfdm/dmmap set dmmap_diagnostics.download='download'
uci -q -c /etc/bbfdm/dmmap set dmmap_diagnostics.download.DefaultNumberOfConnections='1'
uci -q -c /etc/bbfdm/dmmap set dmmap_diagnostics.download.DownloadDiagnosticMaxConnections='1'
uci -q -c /etc/bbfdm/dmmap set dmmap_diagnostics.download.DownloadDiagnosticMaxConnections='4'
uci -q -c /etc/bbfdm/dmmap set dmmap_diagnostics.upload='upload'
uci -q -c /etc/bbfdm/dmmap set dmmap_diagnostics.upload.DefaultNumberOfConnections='1'
uci -q -c /etc/bbfdm/dmmap set dmmap_diagnostics.upload.UploadDiagnosticMaxConnections='1'
uci -q -c /etc/bbfdm/dmmap set dmmap_diagnostics.upload.UploadDiagnosticMaxConnections='4'
uci -q -c /etc/bbfdm/dmmap commit dmmap_diagnostics
}