Projects
osmocom:master
osmo-hnbgw
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 10
View file
osmo-hnbgw.spec
Changed
@@ -18,13 +18,13 @@ Name: osmo-hnbgw Requires: osmocom-master -Version: 1.3.0.49.0589 +Version: 1.3.0.50.6102 Release: 0 Summary: OsmoHNBGW: Osmocom's Base Station Controller for 2G CS mobile networks License: AGPL-3.0-or-later AND GPL-2.0-or-later Group: Hardware/Mobile URL: https://osmocom.org/projects/osmohnbgw -Source: osmo-hnbgw_1.3.0.49.0589.tar.xz +Source: osmo-hnbgw_1.3.0.50.6102.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.9 BuildRequires: libtool >= 2
View file
commit_0589c3ecf13ea910dd0d2c4d00d48cfaddaa2c36.txt
Deleted
View file
commit_61021881ac056a411fdc249ca8a30b4dceb0cd05.txt
Added
View file
osmo-hnbgw_1.3.0.49.0589.dsc -> osmo-hnbgw_1.3.0.50.6102.dsc
Changed
@@ -2,7 +2,7 @@ Source: osmo-hnbgw Binary: osmo-hnbgw, osmo-hnbgw-dbg, osmo-hnbgw-doc Architecture: any all -Version: 1.3.0.49.0589 +Version: 1.3.0.50.6102 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/osmo-hnbgw Standards-Version: 3.9.8 @@ -14,8 +14,8 @@ osmo-hnbgw-dbg deb debug extra arch=any osmo-hnbgw-doc deb doc optional arch=all Checksums-Sha1: - fff2f90a8405478a48fdba859dc8e3b617bf9585 72808 osmo-hnbgw_1.3.0.49.0589.tar.xz + 7d0c5ed3c38df2edfecbf3758e993097c0907b55 73020 osmo-hnbgw_1.3.0.50.6102.tar.xz Checksums-Sha256: - 960f3f6d09def6c690000a97990137693bf722b5a945ce0759c2fd822715deba 72808 osmo-hnbgw_1.3.0.49.0589.tar.xz + d35abfe34ffb5b9597ce0c54ce9dc60661c447f7ae7ca087f184bae0c8f0a19d 73020 osmo-hnbgw_1.3.0.50.6102.tar.xz Files: - 7ac4f1e97a8f8835de31e091db3faed1 72808 osmo-hnbgw_1.3.0.49.0589.tar.xz + 77b16a71a096b86b69e300c70e296741 73020 osmo-hnbgw_1.3.0.50.6102.tar.xz
View file
osmo-hnbgw_1.3.0.49.0589.tar.xz/.tarball-version -> osmo-hnbgw_1.3.0.50.6102.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.3.0.49-0589 +1.3.0.50-6102
View file
osmo-hnbgw_1.3.0.49.0589.tar.xz/debian/changelog -> osmo-hnbgw_1.3.0.50.6102.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -osmo-hnbgw (1.3.0.49.0589) unstable; urgency=medium +osmo-hnbgw (1.3.0.50.6102) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Thu, 03 Nov 2022 18:06:33 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Thu, 24 Nov 2022 11:21:24 +0000 osmo-hnbgw (1.3.0) unstable; urgency=medium
View file
osmo-hnbgw_1.3.0.49.0589.tar.xz/src/osmo-hnbgw/context_map.c -> osmo-hnbgw_1.3.0.50.6102.tar.xz/src/osmo-hnbgw/context_map.c
Changed
@@ -58,8 +58,21 @@ uint32_t i; uint32_t id; - for (i = 0; i < 0xffffffff; i++) { + /* SUA: RFC3868 sec 3.10.4: + * The source reference number is a 4 octet long integer. + * This is allocated by the source SUA instance. + * M3UA/SCCP: ITU-T Q.713 sec 3.3: + * The "source local reference" parameter field is a three-octet field containing a + * reference number which is generated and used by the local node to identify the + * connection section after the connection section is set up. + * The coding "all ones" is reserved for future use. + * Hence, let's simply use 24 bit ids to fit all link types (excluding 0x00ffffff). + */ + + for (i = 0; i < 0x00ffffff; i++) { id = cn->next_conn_id++; + if (cn->next_conn_id == 0x00ffffff) + cn->next_conn_id = 0; if (!cn_id_in_use(cn, id)) { *id_out = id; return 1;
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
.