Projects
osmocom:master
libosmo-sigtran
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 117
View file
commit_3b4d904d2a76de3e8b854078916c60959f1b322d.txt
Deleted
View file
commit_985944b3862c0ffe018e0b4351d7f6bafa55b1eb.txt
Added
View file
libosmo-sigtran_2.2.1.13.3b4d.dsc -> libosmo-sigtran_2.2.1.14.9859.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmo-sigtran Binary: libosmo-sigtran12, libosmo-sigtran-dbg, libosmo-sigtran-doc, libosmo-sigtran-dev, osmo-stp, osmo-stp-dbg, osmo-stp-doc Architecture: any all -Version: 2.2.1.13.3b4d +Version: 2.2.1.14.9859 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/libosmo-sccp Standards-Version: 3.9.7 @@ -18,8 +18,8 @@ osmo-stp-dbg deb debug optional arch=any osmo-stp-doc deb doc optional arch=all Checksums-Sha1: - 1999067477205580231eba6272e7e4a38807571b 270240 libosmo-sigtran_2.2.1.13.3b4d.tar.xz + 87d97cd7af5cb673fe64e34c7c9c74fe728bd599 270272 libosmo-sigtran_2.2.1.14.9859.tar.xz Checksums-Sha256: - 24dd2de9782f4010136a06dec0b521bd0ae5d0d384fde252e10502d513957203 270240 libosmo-sigtran_2.2.1.13.3b4d.tar.xz + 29f3fe6fbff81aa2ffbf76c6acd758d619bc2cfd90fa22a86bb52e32f4be9bc0 270272 libosmo-sigtran_2.2.1.14.9859.tar.xz Files: - 9db1bba2636391f7cf44d55f62fb4b61 270240 libosmo-sigtran_2.2.1.13.3b4d.tar.xz + b0d9c1d6f2bb60dda7159284bddda1fe 270272 libosmo-sigtran_2.2.1.14.9859.tar.xz
View file
libosmo-sigtran_2.2.1.13.3b4d.tar.xz/.tarball-version -> libosmo-sigtran_2.2.1.14.9859.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.2.1.13-3b4d +2.2.1.14-9859
View file
libosmo-sigtran_2.2.1.13.3b4d.tar.xz/debian/changelog -> libosmo-sigtran_2.2.1.14.9859.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmo-sigtran (2.2.1.13.3b4d) unstable; urgency=medium +libosmo-sigtran (2.2.1.14.9859) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Wed, 04 Feb 2026 14:48:03 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Fri, 06 Feb 2026 14:47:35 +0000 libosmo-sigtran (2.2.1) unstable; urgency=medium
View file
libosmo-sigtran_2.2.1.13.3b4d.tar.xz/src/ss7_as.h -> libosmo-sigtran_2.2.1.14.9859.tar.xz/src/ss7_as.h
Changed
@@ -159,6 +159,7 @@ struct { bool enabled; unsigned int timeout_s; + uint8_t last_asp_idx_sent; } tcap; #endif /* WITH_TCAP_LOADSHARING */ } loadshare;
View file
libosmo-sigtran_2.2.1.13.3b4d.tar.xz/src/tcap_as_loadshare.c -> libosmo-sigtran_2.2.1.14.9859.tar.xz/src/tcap_as_loadshare.c
Changed
@@ -230,17 +230,22 @@ static struct osmo_ss7_asp *find_asp_no_tcap_range(struct osmo_ss7_as *as) { - struct osmo_ss7_asp *asp = NULL; + struct osmo_ss7_asp *asp; + unsigned int i; + unsigned int first_idx; - for (int i = 0; i < ARRAY_SIZE(as->cfg.asps); i++) { + first_idx = (as->cfg.loadshare.tcap.last_asp_idx_sent + 1) % ARRAY_SIZE(as->cfg.asps); + i = first_idx; + do { asp = as->cfg.aspsi; - if (!asp) - continue; - if (!asp->tcap.enabled) + if (asp && osmo_ss7_asp_active(asp) && asp->tcap.enabled) { + as->cfg.loadshare.tcap.last_asp_idx_sent = i; return asp; - } + } + i = (i + 1) % ARRAY_SIZE(as->cfg.asps); + } while (i != first_idx); - return asp; + return NULL; } static bool ssn_contains_tcap(uint8_t ssn)
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.