Projects
osmocom:master
libosmocore
Log In
Username
Password
Error getting diff: tar:
×
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 377
View file
libosmocore.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmocore Requires: osmocom-master -Version: 1.10.0.33.a28ae +Version: 1.10.0.34.a0630 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.10.0.33.a28ae.tar.xz +Source: libosmocore_1.10.0.34.a0630.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.6 BuildRequires: libtool >= 2
View file
commit_a0630068b7d7f4b1cac5fa718a12d7458fc100dd.txt
Added
View file
commit_a28ae056435b0de575441f7608101117d1beda0c.txt
Deleted
View file
libosmocore_1.10.0.33.a28ae.dsc -> libosmocore_1.10.0.34.a0630.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.10.0.33.a28ae +Version: 1.10.0.34.a0630 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: - cbfd339224efa3d632ef40ebed3fda2c06ce232c 1122416 libosmocore_1.10.0.33.a28ae.tar.xz + c7705299179bd03f7040cd91eb55b116f766c635 1122432 libosmocore_1.10.0.34.a0630.tar.xz Checksums-Sha256: - 576cf2d43f63bb1ebf3b2800644b5071752822a6fc896a41e9321dc96d0bf66d 1122416 libosmocore_1.10.0.33.a28ae.tar.xz + 2475b69050efdaa26a6808f62a7feb6dd0a1db1671573be43a4b31d5ac3037f5 1122432 libosmocore_1.10.0.34.a0630.tar.xz Files: - 23bcc182772e80917693b042e5947946 1122416 libosmocore_1.10.0.33.a28ae.tar.xz + 74b3900047ba2c524e49a9b2d9fa5ec4 1122432 libosmocore_1.10.0.34.a0630.tar.xz
View file
libosmocore_1.10.0.33.a28ae.tar.xz/.tarball-version -> libosmocore_1.10.0.34.a0630.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.10.0.33-a28ae +1.10.0.34-a0630
View file
libosmocore_1.10.0.33.a28ae.tar.xz/debian/changelog -> libosmocore_1.10.0.34.a0630.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmocore (1.10.0.33.a28ae) unstable; urgency=medium +libosmocore (1.10.0.34.a0630) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Tue, 19 Nov 2024 17:37:34 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Fri, 22 Nov 2024 20:42:30 +0000 libosmocore (1.10.0) unstable; urgency=medium
View file
libosmocore_1.10.0.33.a28ae.tar.xz/src/ctrl/control_cmd.c -> libosmocore_1.10.0.34.a0630.tar.xz/src/ctrl/control_cmd.c
Changed
@@ -425,7 +425,7 @@ osmo_escape_str(var, -1)); goto err; } - LOGP(DLCTRL, LOGL_DEBUG, "Command: GET %s\n", cmd->variable); + LOGP(DLCTRL, LOGL_DEBUG, "Command: GET %s %s\n", cmd->id, cmd->variable); break; case CTRL_TYPE_SET: var = strtok_r(NULL, " ", &saveptr); @@ -457,7 +457,7 @@ goto err; } - LOGP(DLCTRL, LOGL_DEBUG, "Command: SET %s = \"%s\"\n", cmd->variable, + LOGP(DLCTRL, LOGL_DEBUG, "Command: SET %s %s = \"%s\"\n", cmd->id, cmd->variable, osmo_escape_str(cmd->value, -1)); break; #define REPLY_CASE(TYPE, NAME) \ @@ -481,11 +481,11 @@ cmd->reply = talloc_strdup(cmd, val); \ if (!cmd->variable || !cmd->reply) \ goto oom; \ - LOGP(DLCTRL, LOGL_DEBUG, "Command: " NAME " %s: %s\n", cmd->variable, \ + LOGP(DLCTRL, LOGL_DEBUG, "Command: " NAME " %s %s: %s\n", cmd->id, cmd->variable, \ osmo_escape_str(cmd->reply, -1)); \ break - REPLY_CASE(CTRL_TYPE_GET_REPLY, "GET REPLY"); - REPLY_CASE(CTRL_TYPE_SET_REPLY, "SET REPLY"); + REPLY_CASE(CTRL_TYPE_GET_REPLY, "GET_REPLY"); + REPLY_CASE(CTRL_TYPE_SET_REPLY, "SET_REPLY"); REPLY_CASE(CTRL_TYPE_TRAP, "TRAP"); #undef REPLY_CASE case CTRL_TYPE_ERROR:
View file
libosmocore_1.10.0.33.a28ae.tar.xz/src/ctrl/control_if.c -> libosmocore_1.10.0.34.a0630.tar.xz/src/ctrl/control_if.c
Changed
@@ -445,10 +445,10 @@ if (!cmd) { /* should never happen */ + LOGP(DLCTRL, LOGL_ERROR, "Command parser error: %s\n", msgb_hexdump(msg)); cmd = talloc_zero(ccon, struct ctrl_cmd); if (!cmd) return -ENOMEM; - LOGP(DLCTRL, LOGL_ERROR, "Command parser error.\n"); cmd->type = CTRL_TYPE_ERROR; cmd->id = "err"; cmd->reply = "Command parser error."; @@ -474,6 +474,8 @@ send_reply: /* There is a reply or error that should be reported back to the sender. */ + LOGP(DLCTRL, LOGL_DEBUG, "Tx Command reply: %s %s %s %s\n", + get_value_string(ctrl_type_vals, cmd->type), cmd->id, cmd->variable, cmd->reply); ctrl_cmd_send2(ccon, cmd); just_free: talloc_free(cmd);
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
.