Projects
osmocom:master
libosmo-netif
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 41
View file
libosmo-netif.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmo-netif Requires: osmocom-master -Version: 1.3.0.13.2d34 +Version: 1.3.0.15.d455 Release: 0 Summary: Osmocom library for muxed audio License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities URL: https://osmocom.org/projects/libosmo-netif -Source: libosmo-netif_1.3.0.13.2d34.tar.xz +Source: libosmo-netif_1.3.0.15.d455.tar.xz Source1: rpmlintrc BuildRequires: automake BuildRequires: libtool >= 2
View file
commit_2d340403f2bd56c767472262ad89069fab32629b.txt
Deleted
View file
commit_d455f9e60a07a9a0007caf1cd101369ad91f46aa.txt
Added
View file
libosmo-netif_1.3.0.13.2d34.dsc -> libosmo-netif_1.3.0.15.d455.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmo-netif Binary: libosmonetif11, libosmo-netif-dev, libosmo-netif-doc, libosmo-netif-dbg Architecture: any all -Version: 1.3.0.13.2d34 +Version: 1.3.0.15.d455 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/libosmo-netif Standards-Version: 3.9.6 @@ -15,8 +15,8 @@ libosmo-netif-doc deb doc optional arch=all libosmonetif11 deb libs optional arch=any Checksums-Sha1: - f8387c88c0d06bf86d9ba268883bca5e34cbad75 180688 libosmo-netif_1.3.0.13.2d34.tar.xz + 247580aee6866890db9634e0ec03e2aca5862dc4 180296 libosmo-netif_1.3.0.15.d455.tar.xz Checksums-Sha256: - c582983e51e495f53a3c6235e37163675e7c56f2f989564eb79df9c435fe02b1 180688 libosmo-netif_1.3.0.13.2d34.tar.xz + 7128cd03efcf307f78b9a5eabe685a935c1edffb7b53f0a9148027c76dd19f71 180296 libosmo-netif_1.3.0.15.d455.tar.xz Files: - e7dc70e6939031d114b2d07b26c67467 180688 libosmo-netif_1.3.0.13.2d34.tar.xz + 843bb6f180af21a17e8fb2e3c911aa5c 180296 libosmo-netif_1.3.0.15.d455.tar.xz
View file
libosmo-netif_1.3.0.13.2d34.tar.xz/.tarball-version -> libosmo-netif_1.3.0.15.d455.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.3.0.13-2d34 +1.3.0.15-d455
View file
libosmo-netif_1.3.0.13.2d34.tar.xz/debian/changelog -> libosmo-netif_1.3.0.15.d455.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmo-netif (1.3.0.13.2d34) unstable; urgency=medium +libosmo-netif (1.3.0.15.d455) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Thu, 08 Jun 2023 14:11:05 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Thu, 08 Jun 2023 16:19:48 +0000 libosmo-netif (1.3.0) unstable; urgency=medium
View file
libosmo-netif_1.3.0.13.2d34.tar.xz/src/stream.c -> libosmo-netif_1.3.0.15.d455.tar.xz/src/stream.c
Changed
@@ -281,7 +281,7 @@ osmo_stream_cli_close(cli); if (cli->reconnect_timeout < 0) { - LOGSCLI(cli, LOGL_INFO, "not reconnecting, disabled.\n"); + LOGSCLI(cli, LOGL_INFO, "not reconnecting, disabled\n"); return; } @@ -395,7 +395,7 @@ if (errno == EPIPE || errno == ENOTCONN) { osmo_stream_cli_reconnect(cli); } - LOGSCLI(cli, LOGL_ERROR, "error %d to send\n", ret); + LOGSCLI(cli, LOGL_ERROR, "received error %d in response to send\n", errno); } msgb_free(msg); @@ -439,7 +439,7 @@ if (llist_empty(&cli->tx_queue)) osmo_fd_write_disable(&cli->ofd); - LOGSCLI(cli, LOGL_DEBUG, "connection done.\n"); + LOGSCLI(cli, LOGL_DEBUG, "connection established\n"); cli->state = STREAM_CLI_STATE_CONNECTED; switch (cli->sk_domain) { case AF_UNIX: @@ -882,7 +882,7 @@ { struct osmo_stream_cli *cli = data; - LOGSCLI(cli, LOGL_DEBUG, "reconnecting.\n"); + LOGSCLI(cli, LOGL_DEBUG, "reconnecting\n"); osmo_stream_cli_open(cli); } @@ -953,7 +953,7 @@ int flags; }; -static int osmo_stream_srv_fd_cb(struct osmo_fd *ofd, unsigned int what) +static int osmo_stream_srv_ofd_cb(struct osmo_fd *ofd, unsigned int what) { int ret; int sock_fd; @@ -1038,7 +1038,7 @@ link->sk_domain = AF_UNSPEC; link->sk_type = SOCK_STREAM; link->proto = IPPROTO_TCP; - osmo_fd_setup(&link->ofd, -1, OSMO_FD_READ | OSMO_FD_WRITE, osmo_stream_srv_fd_cb, link, 0); + osmo_fd_setup(&link->ofd, -1, OSMO_FD_READ | OSMO_FD_WRITE, osmo_stream_srv_ofd_cb, link, 0); return link; } @@ -1319,7 +1319,7 @@ LOGP(DLINP, LOGL_DEBUG, "message received\n"); if (conn->flags & OSMO_STREAM_SRV_F_FLUSH_DESTROY) { - LOGP(DLINP, LOGL_DEBUG, "Connection is being flushed and closed; ignoring received message\n"); + LOGP(DLINP, LOGL_INFO, "Connection is being flushed and closed; ignoring received message\n"); return 0; } @@ -1423,11 +1423,9 @@ OSMO_ASSERT(link); conn = talloc_zero(ctx, struct osmo_stream_srv); - if (conn == NULL) { - LOGP(DLINP, LOGL_ERROR, "cannot allocate new peer in srv, " - "reason=`%s'\n", strerror(errno)); + if (conn == NULL) return NULL; - } + conn->srv = link; osmo_fd_setup(&conn->ofd, fd, OSMO_FD_READ, osmo_stream_srv_cb, conn, 0); conn->read_cb = read_cb;
View file
libosmo-netif_1.3.0.13.2d34.tar.xz/tests/stream/stream_test.err -> libosmo-netif_1.3.0.15.d455.tar.xz/tests/stream/stream_test.err
Changed
@@ -38,6 +38,6 @@ {11.000018} non-reconnecting test step 1 client OK, server OK, FD reg 1 CONNECTED osmo_stream_cli_recv(): connection closed with srv -CLOSED osmo_stream_cli_reconnect(): not reconnecting, disabled. +CLOSED osmo_stream_cli_reconnect(): not reconnecting, disabled {20.000019} non-reconnecting test step 0 client OK, server OK, FD reg 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
.