Projects
osmocom:master
osmo-bts
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 3
View file
osmo-bts.spec
Changed
@@ -14,13 +14,13 @@ Name: osmo-bts Requires: osmocom-master -Version: 1.5.0.27.ae6a +Version: 1.5.0.29.53e56 Release: 0 Summary: Osmocom BTS-Side code (Abis, scheduling) License: AGPL-3.0-or-later AND GPL-2.0-only Group: Productivity/Telephony/Servers URL: https://osmocom.org/projects/osmobts -Source: osmo-bts_1.5.0.27.ae6a.tar.xz +Source: osmo-bts_1.5.0.29.53e56.tar.xz Source1: rpmlintrc BuildRequires: autoconf BuildRequires: automake
View file
commit_53e566247d7f8c10ed1876bd4c966f245b80e994.txt
Added
View file
commit_ae6ae89a199556293f4cfca26efbfadd828e3252.txt
Deleted
View file
osmo-bts_1.5.0.27.ae6a.dsc -> osmo-bts_1.5.0.29.53e56.dsc
Changed
@@ -2,7 +2,7 @@ Source: osmo-bts Binary: osmo-bts, osmo-bts-trx, osmo-bts-trx-dbg, osmo-bts-virtual, osmo-bts-virtual-dbg, osmo-bts-doc Architecture: any all -Version: 1.5.0.27.ae6a +Version: 1.5.0.29.53e56 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/osmobts Standards-Version: 3.9.8 @@ -17,8 +17,8 @@ osmo-bts-virtual deb net optional arch=any osmo-bts-virtual-dbg deb debug extra arch=any Checksums-Sha1: - 95722e14b145d774bee40bf00e42bca0cfae8ec0 460700 osmo-bts_1.5.0.27.ae6a.tar.xz + 1b4e24589873f78c6564828d5a2a3c86cebc30ec 460824 osmo-bts_1.5.0.29.53e56.tar.xz Checksums-Sha256: - 612b7f05ca4b5a2456a387571022ba21e4d87a1501f4948113fa82cb962e9f38 460700 osmo-bts_1.5.0.27.ae6a.tar.xz + 0d65197e64a29b4ad0d5f2373dab951b885e7166ea7483bada940f5f57e33595 460824 osmo-bts_1.5.0.29.53e56.tar.xz Files: - 4bf1bcbb9521bc11cd2779ebf2a11302 460700 osmo-bts_1.5.0.27.ae6a.tar.xz + f16990a21701415258fea0cdfbf990dd 460824 osmo-bts_1.5.0.29.53e56.tar.xz
View file
osmo-bts_1.5.0.27.ae6a.tar.xz/.tarball-version -> osmo-bts_1.5.0.29.53e56.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.5.0.27-ae6a +1.5.0.29-53e56
View file
osmo-bts_1.5.0.27.ae6a.tar.xz/TODO-RELEASE -> osmo-bts_1.5.0.29.53e56.tar.xz/TODO-RELEASE
Changed
@@ -8,5 +8,5 @@ # If any interfaces have been removed or changed since the last public release: c:r:0. #library what description / commit summary line libosmocore >1.7.0 BTS_FEAT_OSMUX, RSL_IE_OSMO_OSMUX_CID -libosmo-netif >1.2.0 OSMUX_DEFAULT_PORT +libosmo-netif >1.2.0 OSMUX_DEFAULT_PORT, new osmux APIs libosmo-abis >1.3.0 e1inp_ipa_bts_rsl_close_n()
View file
osmo-bts_1.5.0.27.ae6a.tar.xz/debian/changelog -> osmo-bts_1.5.0.29.53e56.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -osmo-bts (1.5.0.27.ae6a) unstable; urgency=medium +osmo-bts (1.5.0.29.53e56) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Tue, 27 Sep 2022 12:54:10 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Tue, 04 Oct 2022 10:54:27 +0000 osmo-bts (1.5.0) unstable; urgency=medium
View file
osmo-bts_1.5.0.27.ae6a.tar.xz/src/common/osmux.c -> osmo-bts_1.5.0.29.53e56.tar.xz/src/common/osmux.c
Changed
@@ -130,15 +130,8 @@ LOGP(DOSMUX, LOGL_INFO, "Releasing unused osmux handle for %s\n", osmo_sockaddr_to_str(&h->rem_addr)); - LOGP(DOSMUX, LOGL_INFO, "Stats: " - "input RTP msgs: %u bytes: %" PRIu64 " " - "output osmux msgs: %u bytes: %" PRIu64 "\n", - in->stats.input_rtp_msgs, - in->stats.input_rtp_bytes, - in->stats.output_osmux_msgs, - in->stats.output_osmux_bytes); llist_del(&h->head); - osmux_xfrm_input_fini(h->in); + TALLOC_FREE(h->in); talloc_free(h); } return; @@ -159,22 +152,17 @@ h->rem_addr = *rem_addr; h->refcnt++; - h->in = talloc_zero(h, struct osmux_in_handle); + h->in = osmux_xfrm_input_alloc(h); if (!h->in) { talloc_free(h); return NULL; } - /* sequence number to start OSMUX message from */ - h->in->osmux_seq = 0; - - h->in->batch_factor = bts->osmux.batch_factor; - - /* If batch size is zero, the library defaults to 1470 bytes. */ - h->in->batch_size = bts->osmux.batch_size; - h->in->deliver = osmux_deliver_cb; - osmux_xfrm_input_init(h->in); - h->in->data = h; + osmux_xfrm_input_set_initial_seqnum(h->in, 0); + osmux_xfrm_input_set_batch_factor(h->in, bts->osmux.batch_factor); + /* If batch size is zero, the library defaults to 1472 bytes. */ + osmux_xfrm_input_set_batch_size(h->in, bts->osmux.batch_size); + osmux_xfrm_input_set_deliver_cb(h->in, osmux_deliver_cb, h); llist_add(&h->head, &bts->osmux.osmux_handle_list);
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
.