Projects
osmocom:master
osmo-msc
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 80
View file
osmo-msc.spec
Changed
@@ -19,13 +19,13 @@ %define with_iu 1 Name: osmo-msc Requires: osmocom-master -Version: 1.11.1 +Version: 1.11.1.2.29842 Release: 0 Summary: Osmocom's MSC for 2G and 3G circuit-switched mobile networks License: AGPL-3.0-or-later AND GPL-2.0-only Group: Productivity/Telephony/Servers URL: https://osmocom.org/projects/osmomsc -Source: osmo-msc_1.11.1.tar.xz +Source: osmo-msc_1.11.1.2.29842.tar.xz Source1: rpmlintrc BuildRequires: autoconf BuildRequires: automake
View file
commit_1792ba92c1f939fb232e25ae1124eda7bb11983f.txt
Deleted
View file
commit_2984235454a64f42a76419671c79c65e2b502217.txt
Added
View file
osmo-msc_1.11.1.dsc -> osmo-msc_1.11.1.2.29842.dsc
Changed
@@ -2,7 +2,7 @@ Source: osmo-msc Binary: osmo-msc, osmo-msc-dbg, osmo-msc-doc Architecture: any all -Version: 1.11.1 +Version: 1.11.1.2.29842 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://osmocom.org/projects/osmomsc Standards-Version: 3.9.8 @@ -14,8 +14,8 @@ osmo-msc-dbg deb debug extra arch=any osmo-msc-doc deb doc optional arch=all Checksums-Sha1: - 733b633977f3f7a592066dabd928e10a8455196f 382668 osmo-msc_1.11.1.tar.xz + e4e5ef56b594cc82c68c2e2b7aa338ad25d9e85e 382968 osmo-msc_1.11.1.2.29842.tar.xz Checksums-Sha256: - 7abb80ff0dae0ebfe20af68bd449284e5f7a5486efa6db2459508204896b2a90 382668 osmo-msc_1.11.1.tar.xz + 6f080d97c7bf674a960a26730533c7c9d78c8da72dfe946209ad2462157d2201 382968 osmo-msc_1.11.1.2.29842.tar.xz Files: - 902c8b5b035a198d13bc4f3b8ba62334 382668 osmo-msc_1.11.1.tar.xz + 2d4c28925e515541ed2899c7046ef17a 382968 osmo-msc_1.11.1.2.29842.tar.xz
View file
osmo-msc_1.11.1.tar.xz/.tarball-version -> osmo-msc_1.11.1.2.29842.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.11.1 +1.11.1.2-29842
View file
osmo-msc_1.11.1.tar.xz/debian/changelog -> osmo-msc_1.11.1.2.29842.tar.xz/debian/changelog
Changed
@@ -1,3 +1,9 @@ +osmo-msc (1.11.1.2.29842) unstable; urgency=medium + + * Automatically generated changelog entry for building the Osmocom master feed + + -- Osmocom OBS scripts <info@osmocom.org> Tue, 17 Oct 2023 11:28:31 +0000 + osmo-msc (1.11.1) unstable; urgency=medium Neels Hofmeyr
View file
osmo-msc_1.11.1.tar.xz/src/libmsc/csd_bs.c -> osmo-msc_1.11.1.2.29842.tar.xz/src/libmsc/csd_bs.c
Changed
@@ -236,6 +236,11 @@ enum gsm48_bcap_user_rate rate = cap->data.user_rate; bool async = cap->data.async; + /* 3.1kHz CSD calls won't have the rate adaptation field set + but do require rate adaptation. */ + if (cap->data.interm_rate && !ra) + ra = GSM48_BCAP_RA_V110_X30; + if (ra == GSM48_BCAP_RA_V110_X30 && async && transp) { switch (rate) { case GSM48_BCAP_UR_300:
View file
osmo-msc_1.11.1.tar.xz/src/libmsc/gsm_04_08_cc.c -> osmo-msc_1.11.1.2.29842.tar.xz/src/libmsc/gsm_04_08_cc.c
Changed
@@ -825,6 +825,8 @@ LOG_TRANS(trans, LOGL_INFO, "Got no information of remote audio codecs: neither SDP nor Bearer Capability. Trying anyway.\n"); break; + case GSM48_BCAP_ITCAP_3k1_AUDIO: + case GSM48_BCAP_ITCAP_FAX_G3: case GSM48_BCAP_ITCAP_UNR_DIG_INF: if (setup->fields & MNCC_F_BEARER_CAP) { trans->cc.remote = (struct sdp_msg){}; @@ -878,6 +880,8 @@ return rc; } break; + case GSM48_BCAP_ITCAP_3k1_AUDIO: + case GSM48_BCAP_ITCAP_FAX_G3: case GSM48_BCAP_ITCAP_UNR_DIG_INF: if (csd_bs_list_to_bearer_cap(&bearer_cap, &trans->cc.local.bearer_services) == 0) { LOG_TRANS(trans, LOGL_ERROR, "Error composing Bearer Capability for CC Setup\n");
View file
osmo-msc_1.11.1.tar.xz/src/libmsc/mncc_builtin.c -> osmo-msc_1.11.1.2.29842.tar.xz/src/libmsc/mncc_builtin.c
Changed
@@ -88,6 +88,8 @@ /* we currently only do speech and CSD */ switch (setup->bearer_cap.transfer) { case GSM_MNCC_BCAP_SPEECH: + case GSM_MNCC_BCAP_AUDIO: + case GSM_MNCC_BCAP_FAX_G3: case GSM_MNCC_BCAP_UNR_DIG: break; default:
View file
osmo-msc_1.11.1.tar.xz/src/libmsc/msc_a.c -> osmo-msc_1.11.1.2.29842.tar.xz/src/libmsc/msc_a.c
Changed
@@ -669,6 +669,8 @@ return; } break; + case GSM48_BCAP_ITCAP_3k1_AUDIO: + case GSM48_BCAP_ITCAP_FAX_G3: case GSM48_BCAP_ITCAP_UNR_DIG_INF: if (!cc_trans->cc.local.bearer_services.count) { LOG_TRANS(cc_trans, LOGL_ERROR, "Assignment not possible, no matching bearer service: %s\n",
View file
osmo-msc_1.11.1.tar.xz/src/libmsc/msc_ho.c -> osmo-msc_1.11.1.2.29842.tar.xz/src/libmsc/msc_ho.c
Changed
@@ -422,6 +422,8 @@ return; } break; + case GSM48_BCAP_ITCAP_3k1_AUDIO: + case GSM48_BCAP_ITCAP_FAX_G3: case GSM48_BCAP_ITCAP_UNR_DIG_INF: if (csd_bs_list_to_gsm0808_channel_type(&channel_type, &cc_trans->cc.local.bearer_services)) { msc_ho_failed(msc_a, GSM0808_CAUSE_EQUIPMENT_FAILURE,
View file
osmo-msc_1.11.1.tar.xz/src/libmsc/transaction_cc.c -> osmo-msc_1.11.1.2.29842.tar.xz/src/libmsc/transaction_cc.c
Changed
@@ -54,6 +54,8 @@ LOG_TRANS(trans, LOGL_DEBUG, "codecs: %s\n", codec_filter_to_str(&trans->cc.codecs, &trans->cc.local, &trans->cc.remote)); break; + case GSM48_BCAP_ITCAP_3k1_AUDIO: + case GSM48_BCAP_ITCAP_FAX_G3: case GSM48_BCAP_ITCAP_UNR_DIG_INF: csd_filter_run(&trans->cc.csd, &trans->cc.local, &trans->cc.remote); LOG_TRANS(trans, LOGL_DEBUG, "codec/BS: %s\n", @@ -78,6 +80,8 @@ case GSM48_BCAP_ITCAP_SPEECH: sdp_audio_codecs_from_bearer_cap(&trans->cc.codecs.ms, bcap); break; + case GSM48_BCAP_ITCAP_3k1_AUDIO: + case GSM48_BCAP_ITCAP_FAX_G3: case GSM48_BCAP_ITCAP_UNR_DIG_INF: sdp_audio_codecs_set_csd(&trans->cc.codecs.ms); csd_bs_list_from_bearer_cap(&trans->cc.csd.ms, bcap); @@ -101,6 +105,8 @@ case GSM48_BCAP_ITCAP_SPEECH: sdp_audio_codecs_from_bearer_cap(&trans->cc.remote.audio_codecs, bcap); break; + case GSM48_BCAP_ITCAP_3k1_AUDIO: + case GSM48_BCAP_ITCAP_FAX_G3: case GSM48_BCAP_ITCAP_UNR_DIG_INF: sdp_audio_codecs_set_csd(&trans->cc.remote.audio_codecs); csd_bs_list_from_bearer_cap(&trans->cc.remote.bearer_services, bcap);
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
.