Changes of Revision 377

libosmocore.spec Changed
x
 
1
@@ -14,13 +14,13 @@
2
 
3
 Name:           libosmocore
4
 Requires: osmocom-master
5
-Version: 1.10.0.33.a28ae
6
+Version: 1.10.0.34.a0630
7
 Release:        0
8
 Summary:        The Open Source Mobile Communications Core Library
9
 License:        GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND AGPL-3.0-or-later
10
 Group:          Productivity/Telephony/Utilities
11
 Url:            https://osmocom.org/projects/libosmocore/wiki/Libosmocore
12
-Source: libosmocore_1.10.0.33.a28ae.tar.xz
13
+Source: libosmocore_1.10.0.34.a0630.tar.xz
14
 Source1: rpmlintrc
15
 BuildRequires:  automake >= 1.6
16
 BuildRequires:  libtool >= 2
17
commit_a0630068b7d7f4b1cac5fa718a12d7458fc100dd.txt Added
commit_a28ae056435b0de575441f7608101117d1beda0c.txt Deleted
libosmocore_1.10.0.33.a28ae.dsc -> libosmocore_1.10.0.34.a0630.dsc Changed
22
 
1
@@ -2,7 +2,7 @@
2
 Source: libosmocore
3
 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
4
 Architecture: any all
5
-Version: 1.10.0.33.a28ae
6
+Version: 1.10.0.34.a0630
7
 Maintainer: Osmocom team <openbsc@lists.osmocom.org>
8
 Homepage: https://projects.osmocom.org/projects/libosmocore
9
 Standards-Version: 3.9.8
10
@@ -35,8 +35,8 @@
11
  libosmovty-doc deb doc optional arch=all
12
  libosmovty13 deb libs optional arch=any
13
 Checksums-Sha1:
14
- cbfd339224efa3d632ef40ebed3fda2c06ce232c 1122416 libosmocore_1.10.0.33.a28ae.tar.xz
15
+ c7705299179bd03f7040cd91eb55b116f766c635 1122432 libosmocore_1.10.0.34.a0630.tar.xz
16
 Checksums-Sha256:
17
- 576cf2d43f63bb1ebf3b2800644b5071752822a6fc896a41e9321dc96d0bf66d 1122416 libosmocore_1.10.0.33.a28ae.tar.xz
18
+ 2475b69050efdaa26a6808f62a7feb6dd0a1db1671573be43a4b31d5ac3037f5 1122432 libosmocore_1.10.0.34.a0630.tar.xz
19
 Files:
20
- 23bcc182772e80917693b042e5947946 1122416 libosmocore_1.10.0.33.a28ae.tar.xz
21
+ 74b3900047ba2c524e49a9b2d9fa5ec4 1122432 libosmocore_1.10.0.34.a0630.tar.xz
22
libosmocore_1.10.0.33.a28ae.tar.xz/.tarball-version -> libosmocore_1.10.0.34.a0630.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-1.10.0.33-a28ae
3
+1.10.0.34-a0630
4
libosmocore_1.10.0.33.a28ae.tar.xz/debian/changelog -> libosmocore_1.10.0.34.a0630.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-libosmocore (1.10.0.33.a28ae) unstable; urgency=medium
3
+libosmocore (1.10.0.34.a0630) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Tue, 19 Nov 2024 17:37:34 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Fri, 22 Nov 2024 20:42:30 +0000
9
 
10
 libosmocore (1.10.0) unstable; urgency=medium
11
 
12
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
34
 
1
@@ -425,7 +425,7 @@
2
                     osmo_escape_str(var, -1));
3
                goto err;
4
            }
5
-           LOGP(DLCTRL, LOGL_DEBUG, "Command: GET %s\n", cmd->variable);
6
+           LOGP(DLCTRL, LOGL_DEBUG, "Command: GET %s %s\n", cmd->id, cmd->variable);
7
            break;
8
        case CTRL_TYPE_SET:
9
            var = strtok_r(NULL, " ", &saveptr);
10
@@ -457,7 +457,7 @@
11
                goto err;
12
            }
13
 
14
-           LOGP(DLCTRL, LOGL_DEBUG, "Command: SET %s = \"%s\"\n", cmd->variable,
15
+           LOGP(DLCTRL, LOGL_DEBUG, "Command: SET %s %s = \"%s\"\n", cmd->id, cmd->variable,
16
                 osmo_escape_str(cmd->value, -1));
17
            break;
18
 #define REPLY_CASE(TYPE, NAME)  \
19
@@ -481,11 +481,11 @@
20
            cmd->reply = talloc_strdup(cmd, val); \
21
            if (!cmd->variable || !cmd->reply) \
22
                goto oom; \
23
-           LOGP(DLCTRL, LOGL_DEBUG, "Command: " NAME " %s: %s\n", cmd->variable, \
24
+           LOGP(DLCTRL, LOGL_DEBUG, "Command: " NAME " %s %s: %s\n", cmd->id, cmd->variable, \
25
                 osmo_escape_str(cmd->reply, -1)); \
26
            break
27
-       REPLY_CASE(CTRL_TYPE_GET_REPLY, "GET REPLY");
28
-       REPLY_CASE(CTRL_TYPE_SET_REPLY, "SET REPLY");
29
+       REPLY_CASE(CTRL_TYPE_GET_REPLY, "GET_REPLY");
30
+       REPLY_CASE(CTRL_TYPE_SET_REPLY, "SET_REPLY");
31
        REPLY_CASE(CTRL_TYPE_TRAP, "TRAP");
32
 #undef REPLY_CASE
33
        case CTRL_TYPE_ERROR:
34
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
22
 
1
@@ -445,10 +445,10 @@
2
 
3
    if (!cmd) {
4
        /* should never happen */
5
+       LOGP(DLCTRL, LOGL_ERROR, "Command parser error: %s\n", msgb_hexdump(msg));
6
        cmd = talloc_zero(ccon, struct ctrl_cmd);
7
        if (!cmd)
8
            return -ENOMEM;
9
-       LOGP(DLCTRL, LOGL_ERROR, "Command parser error.\n");
10
        cmd->type = CTRL_TYPE_ERROR;
11
        cmd->id = "err";
12
        cmd->reply = "Command parser error.";
13
@@ -474,6 +474,8 @@
14
 
15
 send_reply:
16
    /* There is a reply or error that should be reported back to the sender. */
17
+   LOGP(DLCTRL, LOGL_DEBUG, "Tx Command reply: %s %s %s %s\n",
18
+        get_value_string(ctrl_type_vals, cmd->type), cmd->id, cmd->variable, cmd->reply);
19
    ctrl_cmd_send2(ccon, cmd);
20
 just_free:
21
    talloc_free(cmd);
22