Projects
osmocom:master
osmo-msc
Log In
Username
Password
File not found: commit_6ac7e79a194b0bfbd4a3b44ef35b90a3ada29a08.txt
×
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 59
View file
osmo-msc.spec
Changed
@@ -19,13 +19,13 @@ %define with_iu 1 Name: osmo-msc Requires: osmocom-master -Version: 1.10.0.94.f7c6f +Version: 1.10.0.95.8065 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.10.0.94.f7c6f.tar.xz +Source: osmo-msc_1.10.0.95.8065.tar.xz Source1: rpmlintrc BuildRequires: autoconf BuildRequires: automake
View file
commit_80654ed67d677b310effdf6555471afc881cf672.txt
Added
View file
commit_f7c6f1424fc907096bb99a25f99564f663b112e0.txt
Deleted
View file
osmo-msc_1.10.0.94.f7c6f.dsc -> osmo-msc_1.10.0.95.8065.dsc
Changed
@@ -2,7 +2,7 @@ Source: osmo-msc Binary: osmo-msc, osmo-msc-dbg, osmo-msc-doc Architecture: any all -Version: 1.10.0.94.f7c6f +Version: 1.10.0.95.8065 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: - 387b8c5855d5c8bff9ebffe114b2fb7c35f310fa 377672 osmo-msc_1.10.0.94.f7c6f.tar.xz + 07a9732aea398d0d896b6ae60fa17fe1f397353d 377668 osmo-msc_1.10.0.95.8065.tar.xz Checksums-Sha256: - 8cee63d4abeb6446127b8710d1c2dccdf5be021503a993ee3ecdffdbb933b155 377672 osmo-msc_1.10.0.94.f7c6f.tar.xz + 56fe43f064de5249dcc8ed90cd146f0349ae2a54a1e1d54dc34af4459b4e4cc6 377668 osmo-msc_1.10.0.95.8065.tar.xz Files: - 0b3bf756edfb4f24449c59f49017171c 377672 osmo-msc_1.10.0.94.f7c6f.tar.xz + 0c61d8ec266a30c5203c426ab14c80b2 377668 osmo-msc_1.10.0.95.8065.tar.xz
View file
osmo-msc_1.10.0.94.f7c6f.tar.xz/.tarball-version -> osmo-msc_1.10.0.95.8065.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.10.0.94-f7c6f +1.10.0.95-8065
View file
osmo-msc_1.10.0.94.f7c6f.tar.xz/debian/changelog -> osmo-msc_1.10.0.95.8065.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -osmo-msc (1.10.0.94.f7c6f) unstable; urgency=medium +osmo-msc (1.10.0.95.8065) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Mon, 17 Jul 2023 12:30:52 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Tue, 18 Jul 2023 09:35:31 +0000 osmo-msc (1.10.0) unstable; urgency=medium
View file
osmo-msc_1.10.0.94.f7c6f.tar.xz/src/libmsc/csd_bs.c -> osmo-msc_1.10.0.95.8065.tar.xz/src/libmsc/csd_bs.c
Changed
@@ -180,29 +180,40 @@ return csd_bs_to_str_c(OTC_SELECT, bs); } -static int csd_bs_to_gsm0808_data_rate_transp(enum csd_bs bs) +static int csd_bs_to_gsm0808_data_rate_transp(enum csd_bs bs, uint8_t *ch_rate_type) { switch (bs_mapbs.rate) { + case 300: + *ch_rate_type = GSM0808_DATA_FULL_PREF; + return GSM0808_DATA_RATE_TRANSP_600; case 1200: + *ch_rate_type = GSM0808_DATA_FULL_PREF; return GSM0808_DATA_RATE_TRANSP_1k2; case 2400: + *ch_rate_type = GSM0808_DATA_FULL_PREF; return GSM0808_DATA_RATE_TRANSP_2k4; case 4800: + *ch_rate_type = GSM0808_DATA_FULL_PREF; return GSM0808_DATA_RATE_TRANSP_4k8; case 9600: + *ch_rate_type = GSM0808_DATA_FULL_BM; return GSM0808_DATA_RATE_TRANSP_9k6; } return -EINVAL; } -static int csd_bs_to_gsm0808_data_rate_non_transp(enum csd_bs bs) +static int csd_bs_to_gsm0808_data_rate_non_transp(enum csd_bs bs, uint8_t *ch_rate_type) { uint16_t rate = bs_mapbs.rate; - if (rate < 6000) + if (rate < 6000) { + *ch_rate_type = GSM0808_DATA_FULL_PREF; return GSM0808_DATA_RATE_NON_TRANSP_6k0; - if (rate < 12000) + } + if (rate < 12000) { + *ch_rate_type = GSM0808_DATA_FULL_BM; return GSM0808_DATA_RATE_NON_TRANSP_12k0; + } return -EINVAL; } @@ -375,9 +386,9 @@ if (csd_bs_is_transp(list->bs0)) { ct->data_transparent = true; - rc = csd_bs_to_gsm0808_data_rate_transp(list->bs0); + rc = csd_bs_to_gsm0808_data_rate_transp(list->bs0, &ct->ch_rate_type); } else { - rc = csd_bs_to_gsm0808_data_rate_non_transp(list->bs0); + rc = csd_bs_to_gsm0808_data_rate_non_transp(list->bs0, &ct->ch_rate_type); } if (rc < 0) @@ -404,8 +415,6 @@ ct->data_rate_allowed_is_set = true; } - ct->ch_rate_type = GSM0808_SPEECH_FULL_BM; - return 0; }
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
.