Projects
osmocom:master
libosmocore
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 444
View file
libosmocore.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmocore Requires: osmocom-master -Version: 1.12.0.12.88a1 +Version: 1.12.0.13.8511 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.12.0.12.88a1.tar.xz +Source: libosmocore_1.12.0.13.8511.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.6 BuildRequires: libtool >= 2
View file
commit_85112c4911252412f0d127f01bde92794e232d00.txt
Added
View file
commit_88a12fdd3f6e118705f0d6c0948d5cc1d345ae1e.txt
Deleted
View file
libosmocore_1.12.0.12.88a1.dsc -> libosmocore_1.12.0.13.8511.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmocore Binary: libosmocore, libosmocodec4, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore22, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm20, libosmogsm-doc, libosmoisdn0, libosmoisdn-doc, libosmovty13, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmosim-doc, libosmousb0, libosmousb-doc, libosmocore-dev, libosmocore-utils, libosmocore-dbg Architecture: any all -Version: 1.12.0.12.88a1 +Version: 1.12.0.13.8511 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 libosmovty13 deb libs optional arch=any Checksums-Sha1: - f44b4ff9d0462b49dd1e9c8de1bc63237e50496a 1135700 libosmocore_1.12.0.12.88a1.tar.xz + 7f3f2177689d2ad7cb32ab5dbbb315d0615762cf 1135864 libosmocore_1.12.0.13.8511.tar.xz Checksums-Sha256: - 51d679e0f6e1117427b422a0e0dcffb107c4b3c95ebcc2c59d7e87ba135cbce4 1135700 libosmocore_1.12.0.12.88a1.tar.xz + 53568e0f938884ae395f047afd823eeaba82d8cd8f1b66dd378341fd783a956c 1135864 libosmocore_1.12.0.13.8511.tar.xz Files: - 60115657908c5b2774f91f59eddede69 1135700 libosmocore_1.12.0.12.88a1.tar.xz + f5aba97e93630c114d9a37d98588ee80 1135864 libosmocore_1.12.0.13.8511.tar.xz
View file
libosmocore_1.12.0.12.88a1.tar.xz/.tarball-version -> libosmocore_1.12.0.13.8511.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.12.0.12-88a1 +1.12.0.13-8511
View file
libosmocore_1.12.0.12.88a1.tar.xz/debian/changelog -> libosmocore_1.12.0.13.8511.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmocore (1.12.0.12.88a1) unstable; urgency=medium +libosmocore (1.12.0.13.8511) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Thu, 18 Dec 2025 12:49:30 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Thu, 18 Dec 2025 13:25:43 +0000 libosmocore (1.12.0) unstable; urgency=medium
View file
libosmocore_1.12.0.12.88a1.tar.xz/src/core/gsmtap_util.c -> libosmocore_1.12.0.13.8511.tar.xz/src/core/gsmtap_util.c
Changed
@@ -421,7 +421,7 @@ /*! Add a local sink to an existing GSMTAP source and return fd * \paramin gti existing GSMTAP source - * \returns file descriptor of locally bound receive socket + * \returns file descriptor of locally bound receive socket; negative on error * * In case the GSMTAP socket is connected to a local destination * IP/port, this function creates a corresponding receiving socket @@ -436,7 +436,15 @@ */ int gsmtap_source_add_sink(struct gsmtap_inst *gti) { - return gti->sink_fd = gsmtap_source_add_sink_fd(gsmtap_inst_fd2(gti)); + int rc; + + if (gti->sink_fd >= 0) + return -EALREADY; + + rc = gsmtap_source_add_sink_fd(gsmtap_inst_fd2(gti)); + if (rc >= 0) + gti->sink_fd = rc; + return rc; } /* Registered in Osmo IO as a no-op to set the write callback. */ @@ -520,7 +528,7 @@ close(gti->source_fd); - if (gti->sink_fd != -1) { + if (gti->sink_fd >= 0) { close(gti->sink_fd); gti->sink_fd = -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
.