Compare commits
3 Commits
Author | SHA256 | Date | |
---|---|---|---|
147bedd19d | |||
e1594f8254 | |||
5fb369a588 |
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0cfd27fca1e0d50291eef3aa113cecd123e5485e3d2ec10d7cd3e3d50ac2fda2
|
|
||||||
size 274737
|
|
BIN
1.6.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
1.6.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 13 13:37:03 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 1.6.0
|
||||||
|
* Add osmo_stream_cli_set_{ip_dscp,priority}() APIs
|
||||||
|
* Add osmo_stream_srv_link_set_{ip_dscp,priority}() APIs
|
||||||
|
* Support destroy object within user callback
|
||||||
|
* Add API osmo_stream_cli_set_tx_queue_max_length()
|
||||||
|
* Add API osmo_stream_srv_link_set_tx_queue_max_length()
|
||||||
|
* Fix discard 1st msg received quick after connect
|
||||||
|
* Introduce osmo_stream_{cli,srv}_set_segmentation_cb2
|
||||||
|
* Add osmo_stream_srv_link_set_msgb_alloc_info()
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Oct 26 14:09:15 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 1.5.1
|
||||||
|
* stream: Add client-side (segmentation) support for IPA
|
||||||
|
* Introduce generic osmo_stream_{cli,srv}_get_fd() API
|
||||||
|
* stream_{cli,srv}: Add support for SCTP in OSMO_IO mode
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 1 19:06:32 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
Wed Nov 1 19:06:32 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libosmo-netif
|
# spec file for package libosmo-netif
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: libosmo-netif
|
Name: libosmo-netif
|
||||||
Version: 1.4.0
|
Version: 1.6.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Osmocom library for muxed audio
|
Summary: Osmocom library for muxed audio
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -29,9 +29,9 @@ BuildRequires: automake
|
|||||||
BuildRequires: libtool >= 2
|
BuildRequires: libtool >= 2
|
||||||
BuildRequires: lksctp-tools-devel
|
BuildRequires: lksctp-tools-devel
|
||||||
BuildRequires: pkg-config >= 0.20
|
BuildRequires: pkg-config >= 0.20
|
||||||
BuildRequires: pkgconfig(libosmocodec) >= 1.9.0
|
BuildRequires: pkgconfig(libosmocodec) >= 1.11.0
|
||||||
BuildRequires: pkgconfig(libosmocore) >= 1.9.0
|
BuildRequires: pkgconfig(libosmocore) >= 1.11.0
|
||||||
BuildRequires: pkgconfig(libosmogsm) >= 1.9.0
|
BuildRequires: pkgconfig(libosmogsm) >= 1.11.0
|
||||||
BuildRequires: pkgconfig(talloc)
|
BuildRequires: pkgconfig(talloc)
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -80,8 +80,7 @@ if ! %make_build check; then
|
|||||||
# timing issue
|
# timing issue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%post -n libosmonetif11 -p /sbin/ldconfig
|
%ldconfig_scriptlets -n libosmonetif11
|
||||||
%postun -n libosmonetif11 -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files -n libosmonetif11
|
%files -n libosmonetif11
|
||||||
%_libdir/libosmonetif.so.*
|
%_libdir/libosmonetif.so.*
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
---
|
---
|
||||||
configure.ac | 1 +
|
configure.ac | 1 +
|
||||||
examples/Makefile.am | 30 +++++++++++++++---------------
|
examples/Makefile.am | 26 +++++++++++++-------------
|
||||||
src/Makefile.am | 2 +-
|
src/Makefile.am | 2 +-
|
||||||
3 files changed, 17 insertions(+), 16 deletions(-)
|
3 files changed, 15 insertions(+), 14 deletions(-)
|
||||||
|
|
||||||
Index: libosmo-netif-1.4.0/configure.ac
|
Index: libosmo-netif-1.6.0/configure.ac
|
||||||
===================================================================
|
===================================================================
|
||||||
--- libosmo-netif-1.4.0.orig/configure.ac
|
--- libosmo-netif-1.6.0.orig/configure.ac
|
||||||
+++ libosmo-netif-1.4.0/configure.ac
|
+++ libosmo-netif-1.6.0/configure.ac
|
||||||
@@ -125,6 +125,7 @@ AS_IF([test "x$ENABLE_LIBSCTP" = "xyes"]
|
@@ -112,6 +112,7 @@ AS_IF([test "x$ENABLE_LIBSCTP" = "xyes"]
|
||||||
LIBS=$old_LIBS
|
LIBS=$old_LIBS
|
||||||
])
|
])
|
||||||
|
|
||||||
@ -16,18 +16,18 @@ Index: libosmo-netif-1.4.0/configure.ac
|
|||||||
found_pcap=yes
|
found_pcap=yes
|
||||||
AC_CHECK_HEADERS(pcap.h,,found_pcap=no)
|
AC_CHECK_HEADERS(pcap.h,,found_pcap=no)
|
||||||
AM_CONDITIONAL(HAVE_PCAP, test "$found_pcap" = yes)
|
AM_CONDITIONAL(HAVE_PCAP, test "$found_pcap" = yes)
|
||||||
Index: libosmo-netif-1.4.0/examples/Makefile.am
|
Index: libosmo-netif-1.6.0/examples/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- libosmo-netif-1.4.0.orig/examples/Makefile.am
|
--- libosmo-netif-1.6.0.orig/examples/Makefile.am
|
||||||
+++ libosmo-netif-1.4.0/examples/Makefile.am
|
+++ libosmo-netif-1.6.0/examples/Makefile.am
|
||||||
@@ -1,5 +1,5 @@
|
@@ -1,5 +1,5 @@
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/include
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
||||||
-AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS)
|
-AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(COVERAGE_CFLAGS)
|
||||||
+AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(TALLOC_CFLAGS)
|
+AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(COVERAGE_CFLAGS) $(TALLOC_CFLAGS)
|
||||||
AM_LDFLAGS = $(COVERAGE_LDFLAGS)
|
AM_LDFLAGS = $(COVERAGE_LDFLAGS)
|
||||||
|
|
||||||
noinst_PROGRAMS = ipa-stream-client \
|
noinst_PROGRAMS = ipa-stream-client \
|
||||||
@@ -19,57 +19,57 @@ noinst_HEADERS = udp-test.h
|
@@ -19,44 +19,44 @@ noinst_HEADERS = udp-test.h
|
||||||
|
|
||||||
ipa_stream_client_SOURCES = ipa-stream-client.c
|
ipa_stream_client_SOURCES = ipa-stream-client.c
|
||||||
ipa_stream_client_LDADD = $(top_builddir)/src/libosmonetif.la \
|
ipa_stream_client_LDADD = $(top_builddir)/src/libosmonetif.la \
|
||||||
@ -39,21 +39,6 @@ Index: libosmo-netif-1.4.0/examples/Makefile.am
|
|||||||
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
|
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
|
||||||
+ $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(TALLOC_LIBS)
|
+ $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(TALLOC_LIBS)
|
||||||
|
|
||||||
if ENABLE_LAPD
|
|
||||||
noinst_PROGRAMS += lapd-over-datagram-user lapd-over-datagram-network
|
|
||||||
lapd_over_datagram_user_SOURCES = lapd-over-datagram-user.c
|
|
||||||
lapd_over_datagram_user_LDADD = $(top_builddir)/src/libosmonetif.la \
|
|
||||||
$(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) \
|
|
||||||
- $(LIBOSMOABIS_LIBS)
|
|
||||||
+ $(LIBOSMOABIS_LIBS) $(TALLOC_LIBS)
|
|
||||||
|
|
||||||
lapd_over_datagram_network_SOURCES = lapd-over-datagram-network.c
|
|
||||||
lapd_over_datagram_network_LDADD = $(top_builddir)/src/libosmonetif.la \
|
|
||||||
$(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) \
|
|
||||||
- $(LIBOSMOABIS_LIBS)
|
|
||||||
+ $(LIBOSMOABIS_LIBS) $(TALLOC_LIBS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
stream_client_SOURCES = stream-client.c
|
stream_client_SOURCES = stream-client.c
|
||||||
stream_client_LDADD = $(top_builddir)/src/libosmonetif.la \
|
stream_client_LDADD = $(top_builddir)/src/libosmonetif.la \
|
||||||
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
|
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
|
||||||
@ -99,16 +84,16 @@ Index: libosmo-netif-1.4.0/examples/Makefile.am
|
|||||||
osmux_test_output_LDADD = $(top_builddir)/src/libosmonetif.la \
|
osmux_test_output_LDADD = $(top_builddir)/src/libosmonetif.la \
|
||||||
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
|
- $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS)
|
||||||
+ $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(TALLOC_LIBS)
|
+ $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(TALLOC_LIBS)
|
||||||
Index: libosmo-netif-1.4.0/src/Makefile.am
|
Index: libosmo-netif-1.6.0/src/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- libosmo-netif-1.4.0.orig/src/Makefile.am
|
--- libosmo-netif-1.6.0.orig/src/Makefile.am
|
||||||
+++ libosmo-netif-1.4.0/src/Makefile.am
|
+++ libosmo-netif-1.6.0/src/Makefile.am
|
||||||
@@ -3,7 +3,7 @@
|
@@ -3,7 +3,7 @@
|
||||||
LIBVERSION=12:0:1
|
LIBVERSION=14:0:3
|
||||||
|
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
|
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)
|
||||||
-AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)
|
-AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS)
|
||||||
+AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS) $(TALLOC_CFLAGS)
|
+AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(COVERAGE_CFLAGS) $(LIBSCTP_CFLAGS) $(TALLOC_CFLAGS)
|
||||||
AM_LDFLAGS = $(COVERAGE_LDFLAGS)
|
AM_LDFLAGS = $(COVERAGE_LDFLAGS)
|
||||||
|
|
||||||
lib_LTLIBRARIES = libosmonetif.la
|
lib_LTLIBRARIES = libosmonetif.la
|
||||||
|
Loading…
x
Reference in New Issue
Block a user