Projects
osmocom:master
libosmocore
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 207
View file
libosmocore.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmocore Requires: osmocom-master -Version: 1.8.0.224.6df5 +Version: 1.8.0.225.1247 Release: 0 Summary: The Open Source Mobile Communications Core Library License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND AGPL-3.0-or-later Group: Productivity/Telephony/Utilities Url: https://osmocom.org/projects/libosmocore/wiki/Libosmocore -Source: libosmocore_1.8.0.224.6df5.tar.xz +Source: libosmocore_1.8.0.225.1247.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.6 BuildRequires: libtool >= 2
View file
commit_1247aa1fc09029253dd7b69bec2e92bdff967380.txt
Added
View file
commit_6df53dc769d6b9c633307fa70de4a0e27cf950fa.txt
Deleted
View file
libosmocore_1.8.0.224.6df5.dsc -> libosmocore_1.8.0.225.1247.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmocore Binary: libosmocore, libosmocodec0, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore20, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm18, libosmogsm-doc, libosmoisdn0, libosmoisdn-doc, libosmovty9, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmosim-doc, libosmousb0, libosmousb-doc, libosmocore-dev, libosmocore-utils, libosmocore-dbg Architecture: any all -Version: 1.8.0.224.6df5 +Version: 1.8.0.225.1247 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/libosmocore Standards-Version: 3.9.8 @@ -35,8 +35,8 @@ libosmovty-doc deb doc optional arch=all libosmovty9 deb libs optional arch=any Checksums-Sha1: - f345166485308c45e0c58b2e1412b3aea5826c1b 1063720 libosmocore_1.8.0.224.6df5.tar.xz + 73c205cde6921a7b91117152fb9055c936d12a18 1063812 libosmocore_1.8.0.225.1247.tar.xz Checksums-Sha256: - 6277f09f7800f7cfdc08aa55711c407ec1422a78a0aafce358b5ee866e870d32 1063720 libosmocore_1.8.0.224.6df5.tar.xz + 58eb4eba5215ed77701bf8ae21a6bd184e8a8061e0c4f7cccb09c2ccb4c5e16f 1063812 libosmocore_1.8.0.225.1247.tar.xz Files: - 451ec517ec2f360992fbf6cbdbdc7d7f 1063720 libosmocore_1.8.0.224.6df5.tar.xz + 777f5b0ace524060f2a8a602afb5e9dc 1063812 libosmocore_1.8.0.225.1247.tar.xz
View file
libosmocore_1.8.0.224.6df5.tar.xz/.tarball-version -> libosmocore_1.8.0.225.1247.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.8.0.224-6df5 +1.8.0.225-1247
View file
libosmocore_1.8.0.224.6df5.tar.xz/debian/changelog -> libosmocore_1.8.0.225.1247.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmocore (1.8.0.224.6df5) unstable; urgency=medium +libosmocore (1.8.0.225.1247) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Fri, 11 Aug 2023 15:42:21 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Fri, 11 Aug 2023 16:07:56 +0000 libosmocore (1.8.0) unstable; urgency=medium
View file
libosmocore_1.8.0.224.6df5.tar.xz/include/osmocom/gsm/lapdm.h -> libosmocore_1.8.0.225.1247.tar.xz/include/osmocom/gsm/lapdm.h
Changed
@@ -24,6 +24,7 @@ uint8_t link_id; uint8_t ta_ind; /* TA indicated by network */ uint8_t tx_power_ind; /* MS power indicated by network */ + uint32_t fn; }; /*! LAPDm datalink like TS 04.06 / Section 3.5.2 */
View file
libosmocore_1.8.0.224.6df5.tar.xz/src/gsm/lapdm.c -> libosmocore_1.8.0.225.1247.tar.xz/src/gsm/lapdm.c
Changed
@@ -700,7 +700,7 @@ /* input into layer2 (from layer 1) */ static int l2_ph_data_ind(struct msgb *msg, struct lapdm_entity *le, - uint8_t chan_nr, uint8_t link_id) + uint8_t chan_nr, uint8_t link_id, uint32_t fn) { uint8_t cbits = chan_nr >> 3; uint8_t sapi; /* we cannot take SAPI from link_id, as L1 has no clue */ @@ -715,6 +715,7 @@ memset(&mctx, 0, sizeof(mctx)); mctx.chan_nr = chan_nr; mctx.link_id = link_id; + mctx.fn = fn; /* check for L1 chan_nr/link_id and determine LAPDm hdr format */ if (cbits == 0x10 || cbits == 0x12) { @@ -916,7 +917,7 @@ switch (OSMO_PRIM_HDR(oph)) { case OSMO_PRIM(PRIM_PH_DATA, PRIM_OP_INDICATION): rc = l2_ph_data_ind(oph->msg, le, pp->u.data.chan_nr, - pp->u.data.link_id); + pp->u.data.link_id, pp->u.data.fn); break; case OSMO_PRIM(PRIM_PH_RTS, PRIM_OP_INDICATION): rc = l2_ph_data_conf(oph->msg, le);
View file
libosmocore_1.8.0.224.6df5.tar.xz/tests/lapd/lapd_test.c -> libosmocore_1.8.0.225.1247.tar.xz/tests/lapd/lapd_test.c
Changed
@@ -184,6 +184,7 @@ /* LAPDm requires those... */ pp.u.data.chan_nr = 0; pp.u.data.link_id = 0; + pp.u.data.fn = 0; /* feed into the LAPDm code of libosmogsm */ rc = lapdm_phsap_up(&pp.oph, &chan->lapdm_dcch); OSMO_ASSERT(rc == 0 || rc == -EBUSY); @@ -206,6 +207,7 @@ /* LAPDm requires those... */ pp.u.data.chan_nr = 0; pp.u.data.link_id = 0; + pp.u.data.fn = 0; /* feed into the LAPDm code of libosmogsm */ rc = lapdm_phsap_up(&pp.oph, &chan->lapdm_dcch); OSMO_ASSERT(rc == 0 || rc == -EBUSY);
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
.