lists.osmocom.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
List overview
Download
gerrit-log
February 2023
----- 2025 -----
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
gerrit-log@lists.osmocom.org
1 participants
2601 discussions
Start a n
N
ew thread
Change in osmo-mgw[master]: mgcp_sdp: add fmtp string to define HR GSM RTP format
by dexter
dexter has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-mgw/+/31214
) Change subject: mgcp_sdp: add fmtp string to define HR GSM RTP format ...................................................................... mgcp_sdp: add fmtp string to define HR GSM RTP format There are two different RTP HR GSM formats defined (TS 101.318 and RFC5993). Lets add an fmtp parameter In order to select between the two formats (and convert if necessary) via MGCP/SDP. Unfortunately there is no official fmtp string defined, so we have to define an osmocom specific string. Change-Id: Idde8da27fd335dc03b8fbd9e0fedc1491b77e9e4 Related: OS#5688 --- M include/osmocom/mgcp/mgcp_common.h M src/libosmo-mgcp/mgcp_network.c M src/libosmo-mgcp/mgcp_sdp.c 3 files changed, 29 insertions(+), 4 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/14/31214/1 diff --git a/include/osmocom/mgcp/mgcp_common.h b/include/osmocom/mgcp/mgcp_common.h index 07d8d37..ac26b6c 100644 --- a/include/osmocom/mgcp/mgcp_common.h +++ b/include/osmocom/mgcp/mgcp_common.h @@ -58,10 +58,17 @@ MGCP_X_OSMO_IGN_CALLID = 1, }; +enum mgcp_gsm_hr_fmt { + MGCP_GSM_HR_FMT_TS101318, + MGCP_GSM_HR_FMT_RFC5993, +}; + /* Codec parameters (communicated via SDP/fmtp) */ struct mgcp_codec_param { bool amr_octet_aligned_present; bool amr_octet_aligned; + bool gsm_hr_format_present; + enum mgcp_gsm_hr_fmt gsm_hr_format; }; /* Ensure that the msg->l2h is NUL terminated. */ diff --git a/src/libosmo-mgcp/mgcp_network.c b/src/libosmo-mgcp/mgcp_network.c index d6028a2..79444a2 100644 --- a/src/libosmo-mgcp/mgcp_network.c +++ b/src/libosmo-mgcp/mgcp_network.c @@ -687,7 +687,8 @@ * function is used to convert between RFC 5993 and TS 101318, which we normally * use. * Return 0 on sucess, negative on errors like invalid data length. */ -static int rfc5993_hr_convert(struct mgcp_endpoint *endp, struct msgb *msg) +static int rfc5993_hr_convert(struct mgcp_endpoint *endp, struct msgb *msg, + bool target_fmt_present, enum mgcp_gsm_hr_fmt target_fmt) { struct rtp_hdr *rtp_hdr; if (msgb_length(msg) < sizeof(struct rtp_hdr)) { @@ -700,11 +701,15 @@ if (msgb_length(msg) == GSM_HR_BYTES + sizeof(struct rtp_hdr)) { /* TS 101318 encoding => RFC 5993 encoding */ + if (target_fmt_present && target_fmt == MGCP_GSM_HR_FMT_TS101318) + return 0; msgb_put(msg, 1); memmove(rtp_hdr->data + 1, rtp_hdr->data, GSM_HR_BYTES); rtp_hdr->data[0] = 0x00; } else if (msgb_length(msg) == GSM_HR_BYTES + sizeof(struct rtp_hdr) + 1) { /* RFC 5993 encoding => TS 101318 encoding */ + if (target_fmt_present && target_fmt == MGCP_GSM_HR_FMT_RFC5993) + return 0; memmove(rtp_hdr->data, rtp_hdr->data + 1, GSM_HR_BYTES); msgb_trim(msg, msgb_length(msg) - 1); } else { @@ -1234,9 +1239,13 @@ conn_dst->end.codec->param.amr_octet_aligned ? "octet-aligned" : "bandwidth-efficient"); break; } - } else if (rtp_end->rfc5993_hr_convert && - strcmp(conn_src->end.codec->subtype_name, "GSM-HR-08") == 0) { - rc = rfc5993_hr_convert(endp, msg); + } else if ((rtp_end->rfc5993_hr_convert || + (conn_dst->end.codec->param_present + && conn_dst->end.codec->param.gsm_hr_format_present)) + && strcmp(conn_src->end.codec->subtype_name, "GSM-HR-08") == 0) { + rc = rfc5993_hr_convert(endp, msg, conn_dst->end.codec->param_present + && conn_dst->end.codec->param.gsm_hr_format_present, + conn_dst->end.codec->param.gsm_hr_format); if (rc < 0) { LOGPENDP(endp, DRTP, LOGL_ERROR, "Error while converting to GSM-HR-08\n"); break; diff --git a/src/libosmo-mgcp/mgcp_sdp.c b/src/libosmo-mgcp/mgcp_sdp.c index 10822e5..c552adb 100644 --- a/src/libosmo-mgcp/mgcp_sdp.c +++ b/src/libosmo-mgcp/mgcp_sdp.c @@ -247,6 +247,15 @@ fmtp_param->param.amr_octet_aligned = true; } + /* GSM-HR format (osmocom specific) */ + if (strcmp(param_str, "gsm-hr-format=ts101318") == 0) { + fmtp_param->param.gsm_hr_format_present = true; + fmtp_param->param.gsm_hr_format = MGCP_GSM_HR_FMT_TS101318; + } else if (strcmp(param_str, "gsm-hr-format=rfc5993") == 0) { + fmtp_param->param.gsm_hr_format_present = true; + fmtp_param->param.gsm_hr_format = MGCP_GSM_HR_FMT_RFC5993; + } + param_str = strtok(NULL, " "); if (!param_str) break; -- To view, visit
https://gerrit.osmocom.org/c/osmo-mgw/+/31214
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-mgw Gerrit-Branch: master Gerrit-Change-Id: Idde8da27fd335dc03b8fbd9e0fedc1491b77e9e4 Gerrit-Change-Number: 31214 Gerrit-PatchSet: 1 Gerrit-Owner: dexter <pmaier(a)sysmocom.de> Gerrit-MessageType: newchange
2 years, 4 months
1
0
0
0
Change in libasn1c[master]: Bump version: 0.9.34.1-71cb → 0.9.35
by pespin
pespin has submitted this change. (
https://gerrit.osmocom.org/c/libasn1c/+/31211
) Change subject: Bump version: 0.9.34.1-71cb → 0.9.35 ...................................................................... Bump version: 0.9.34.1-71cb → 0.9.35 Change-Id: I83f1eb903ea083382451eb82d155ae59195c985e --- M debian/changelog 1 file changed, 7 insertions(+), 0 deletions(-) Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved diff --git a/debian/changelog b/debian/changelog index 242f46a..9790736 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +libasn1c (0.9.35) unstable; urgency=medium + + [ Neels Hofmeyr ] + * fix 3 indents to avoid build failure with -Werror + + -- Pau Espin Pedrol <pespin(a)sysmocom.de> Tue, 07 Feb 2023 14:09:40 +0100 + libasn1c (0.9.34) unstable; urgency=medium [ Eric ] -- To view, visit
https://gerrit.osmocom.org/c/libasn1c/+/31211
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libasn1c Gerrit-Branch: master Gerrit-Change-Id: I83f1eb903ea083382451eb82d155ae59195c985e Gerrit-Change-Number: 31211 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: merged
2 years, 4 months
1
0
0
0
Change in libasn1c[master]: Bump version: 0.9.34.1-71cb → 0.9.35
by pespin
pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/libasn1c/+/31211
) Change subject: Bump version: 0.9.34.1-71cb → 0.9.35 ...................................................................... Patch Set 1: Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/libasn1c/+/31211
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libasn1c Gerrit-Branch: master Gerrit-Change-Id: I83f1eb903ea083382451eb82d155ae59195c985e Gerrit-Change-Number: 31211 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-Comment-Date: Tue, 07 Feb 2023 13:13:41 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
2 years, 4 months
1
0
0
0
Change in libgtpnl[master]: Bump version: 1.2.3.3-6954 → 1.2.4
by pespin
pespin has submitted this change. (
https://gerrit.osmocom.org/c/libgtpnl/+/31210
) Change subject: Bump version: 1.2.3.3-6954 → 1.2.4 ...................................................................... Bump version: 1.2.3.3-6954 → 1.2.4 Change-Id: I905039b2fb8d1602df16a235c976ffbc48b5da44 --- M debian/changelog 1 file changed, 9 insertions(+), 0 deletions(-) Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved diff --git a/debian/changelog b/debian/changelog index 3a3228e..9a061d5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +libgtpnl (1.2.4) unstable; urgency=medium + + [ Oliver Smith ] + * README: fix link to homepage + * tools/gtp-tunnel: fix del usage + * tools/gtp-link: add --sgsn to usage + + -- Pau Espin Pedrol <pespin(a)sysmocom.de> Tue, 07 Feb 2023 14:07:11 +0100 + libgtpnl (1.2.3) unstable; urgency=medium [ Neels Hofmeyr ] -- To view, visit
https://gerrit.osmocom.org/c/libgtpnl/+/31210
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libgtpnl Gerrit-Branch: master Gerrit-Change-Id: I905039b2fb8d1602df16a235c976ffbc48b5da44 Gerrit-Change-Number: 31210 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: merged
2 years, 4 months
1
0
0
0
Change in libgtpnl[master]: Bump version: 1.2.3.3-6954 → 1.2.4
by pespin
pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/libgtpnl/+/31210
) Change subject: Bump version: 1.2.3.3-6954 → 1.2.4 ...................................................................... Patch Set 1: Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/libgtpnl/+/31210
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libgtpnl Gerrit-Branch: master Gerrit-Change-Id: I905039b2fb8d1602df16a235c976ffbc48b5da44 Gerrit-Change-Number: 31210 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-Comment-Date: Tue, 07 Feb 2023 13:13:32 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
2 years, 4 months
1
0
0
0
Change in libasn1c[master]: Bump version: 0.9.34.1-71cb → 0.9.35
by pespin
pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/libasn1c/+/31211
) Change subject: Bump version: 0.9.34.1-71cb → 0.9.35 ...................................................................... Bump version: 0.9.34.1-71cb → 0.9.35 Change-Id: I83f1eb903ea083382451eb82d155ae59195c985e --- M debian/changelog 1 file changed, 7 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libasn1c refs/changes/11/31211/1 diff --git a/debian/changelog b/debian/changelog index 242f46a..9790736 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +libasn1c (0.9.35) unstable; urgency=medium + + [ Neels Hofmeyr ] + * fix 3 indents to avoid build failure with -Werror + + -- Pau Espin Pedrol <pespin(a)sysmocom.de> Tue, 07 Feb 2023 14:09:40 +0100 + libasn1c (0.9.34) unstable; urgency=medium [ Eric ] -- To view, visit
https://gerrit.osmocom.org/c/libasn1c/+/31211
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libasn1c Gerrit-Branch: master Gerrit-Change-Id: I83f1eb903ea083382451eb82d155ae59195c985e Gerrit-Change-Number: 31211 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: newchange
2 years, 4 months
1
0
0
0
Change in libgtpnl[master]: Bump version: 1.2.3.3-6954 → 1.2.4
by pespin
pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/libgtpnl/+/31210
) Change subject: Bump version: 1.2.3.3-6954 → 1.2.4 ...................................................................... Bump version: 1.2.3.3-6954 → 1.2.4 Change-Id: I905039b2fb8d1602df16a235c976ffbc48b5da44 --- M debian/changelog 1 file changed, 9 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libgtpnl refs/changes/10/31210/1 diff --git a/debian/changelog b/debian/changelog index 3a3228e..9a061d5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +libgtpnl (1.2.4) unstable; urgency=medium + + [ Oliver Smith ] + * README: fix link to homepage + * tools/gtp-tunnel: fix del usage + * tools/gtp-link: add --sgsn to usage + + -- Pau Espin Pedrol <pespin(a)sysmocom.de> Tue, 07 Feb 2023 14:07:11 +0100 + libgtpnl (1.2.3) unstable; urgency=medium [ Neels Hofmeyr ] -- To view, visit
https://gerrit.osmocom.org/c/libgtpnl/+/31210
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libgtpnl Gerrit-Branch: master Gerrit-Change-Id: I905039b2fb8d1602df16a235c976ffbc48b5da44 Gerrit-Change-Number: 31210 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: newchange
2 years, 4 months
1
0
0
0
Change in libosmo-pfcp[master]: Bump version: 0.1.2.25-9c96-dirty → 0.2.0
by pespin
pespin has submitted this change. (
https://gerrit.osmocom.org/c/libosmo-pfcp/+/31208
) Change subject: Bump version: 0.1.2.25-9c96-dirty → 0.2.0 ...................................................................... Bump version: 0.1.2.25-9c96-dirty → 0.2.0 Change-Id: I44bb6b839a6aefaf269e124c990ff0f0b837588d --- M TODO-RELEASE M configure.ac M contrib/libosmo-pfcp.spec.in M debian/changelog M debian/control R debian/libosmo-gtlv1.install M debian/rules M src/libosmo-gtlv/Makefile.am M src/libosmo-pfcp/Makefile.am 9 files changed, 58 insertions(+), 22 deletions(-) Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved diff --git a/TODO-RELEASE b/TODO-RELEASE index 19c1fce..d0852fc 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -7,4 +7,3 @@ # If any interfaces have been added since the last public release: c:r:a + 1. # If any interfaces have been removed or changed since the last public release: c:r:0. #library what description / commit summary line -libosmo-pfcp libosmogsm>=1.7.0 libosmo-pfcp now uses API from libosmogsm (from libosmocore.git) diff --git a/configure.ac b/configure.ac index 4d10d3f..bbca19a 100644 --- a/configure.ac +++ b/configure.ac @@ -37,8 +37,8 @@ PKG_PROG_PKG_CONFIG([0.20]) dnl checks for libraries -PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.7.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.7.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.8.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.8.0) dnl checks for header files AC_HEADER_STDC diff --git a/contrib/libosmo-pfcp.spec.in b/contrib/libosmo-pfcp.spec.in index e789ef6..421a893 100644 --- a/contrib/libosmo-pfcp.spec.in +++ b/contrib/libosmo-pfcp.spec.in @@ -11,8 +11,8 @@ BuildRequires: libtool >= 2 BuildRequires: lksctp-tools-devel BuildRequires: pkgconfig >= 0.20 -BuildRequires: pkgconfig(libosmocore) >= 1.7.0 -BuildRequires: pkgconfig(libosmogsm) >= 1.7.0 +BuildRequires: pkgconfig(libosmocore) >= 1.8.0 +BuildRequires: pkgconfig(libosmogsm) >= 1.8.0 BuildRequires: pkgconfig(talloc) %description @@ -22,12 +22,12 @@ libosmo-gtlv and libosmo-pfcp -%package -n libosmo-gtlv0 +%package -n libosmo-gtlv1 Summary: Generic TLV and TLIV protocol support License: GPL-2.0-or-later AND AGPL-3.0-or-later Group: System/Libraries -%description -n libosmo-gtlv0 +%description -n libosmo-gtlv1 Decoding, encoding and logging of protocols using a Tag-Length-Value and/or Tag-Length-Instance-Value structure. @@ -36,7 +36,7 @@ Summary: Development files for libosmo-pfcp License: GPL-2.0-or-later Group: Development/Libraries/C and C++ -Requires: libosmo-gtlv0 = %{version} +Requires: libosmo-gtlv1 = %{version} %description -n libosmo-gtlv-devel libosmo-pfcp implements decoding, encoding and endpoint implementation of the @@ -84,13 +84,13 @@ %check make %{?_smp_mflags} check || (find . -name testsuite.log -exec cat {} +) -%post -n libosmo-gtlv0 -p /sbin/ldconfig -%postun -n libosmo-gtlv0 -p /sbin/ldconfig +%post -n libosmo-gtlv1 -p /sbin/ldconfig +%postun -n libosmo-gtlv1 -p /sbin/ldconfig %post -n libosmo-pfcp0 -p /sbin/ldconfig %postun -n libosmo-pfcp0 -p /sbin/ldconfig -%files -n libosmo-gtlv0 -%{_libdir}/libosmo-gtlv.so.0* +%files -n libosmo-gtlv1 +%{_libdir}/libosmo-gtlv.so.1* %files -n libosmo-gtlv-devel %dir %{_includedir}/%{name} diff --git a/debian/changelog b/debian/changelog index 453bc6e..ecac7cd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,40 @@ +libosmo-pfcp (0.2.0) unstable; urgency=medium + + [ Neels Hofmeyr ] + * pfcp_msg: check use count correctness + * gtlv: check memory bounds 1/3: encoding TLV + * gtlv: check memory bounds 2/3: decoding TLV + * gtlv: check memory bounds 3/3: encoding to str + * gtlv: fix repeated IEIs to several struct members + * gtlv: test repeated IEIs to several struct members + + [ Harald Welte ] + * Support building with -Werror=strict-prototypes / -Werror=old-style-definition + * Add -Werror=implicit-int -Werror=int-conversion -Werror=old-style-definition + + [ Vadim Yanitskiy ] + * contrib/jenkins.sh: build with --enable-werror + * tests: use 'check_PROGRAMS' instead of 'noinst_PROGRAMS' + + [ Neels Janosch Hofmeyr ] + * api doc: explain heartbeat handling in rx_msg_cb + * pfcp_test: init logging, for PFCP errors + * pfcp_test: add missing 'pdi_present = true' + * pfcp_test: fix order of dependencies + * PFCP: add Network Instance IE in PDI IE + * add osmo_pfcp_ip_addrs_to_str_*() + * osmo_pfcp_ip_addrs_set(): do not set port number + * add osmo_pfcp_ie_outer_header_creation_to_str_*() + * tweak comment in pfcp_ies_custom.c + * pfcp coding errmsgs: drop extra newlines + * fix coding of Network Instance IE + * fix coding of Node ID: FQDN type + * bitmask to string: shorten + * gtlv: decoding error: log size limited hexdump of IE + * silence compiler warning in gtlv_dec_enc.c + + -- Pau Espin Pedrol <pespin(a)sysmocom.de> Tue, 07 Feb 2023 13:58:41 +0100 + libosmo-pfcp (0.1.2) unstable; urgency=medium [ Neels Hofmeyr ] diff --git a/debian/control b/debian/control index 1d4822d..898d32d 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ automake, libtool, pkg-config, - libosmocore-dev (>= 1.7.0), + libosmocore-dev (>= 1.8.0), libtalloc-dev (>= 2.1.0) Standards-Version: 3.9.8 Vcs-Git:
https://gitea.osmocom.org/osmocom/libosmo-pfcp
@@ -22,12 +22,12 @@ Architecture: any Multi-Arch: foreign Depends: ${misc:Depends}, - libosmo-gtlv0 (= ${binary:Version}), + libosmo-gtlv1 (= ${binary:Version}), libosmo-pfcp0 (= ${binary:Version}) Description: Osmocom PFCP protocol implementation (metapackage) Install Osmocom PFCP and generic TLV protocol libraries. -Package: libosmo-gtlv0 +Package: libosmo-gtlv1 Section: libs Architecture: any Multi-Arch: same @@ -43,8 +43,8 @@ Multi-Arch: same Section: libdevel Depends: ${misc:Depends}, - libosmo-gtlv0 (= ${binary:Version}), - libosmocore-dev (>= 1.7.0), + libosmo-gtlv1 (= ${binary:Version}), + libosmocore-dev (>= 1.8.0), libtalloc-dev (>= 2.1.0) Description: Development files for libosmo-gtlv libosmo-gtlv implements decoding, encoding and logging of protocols using a @@ -57,7 +57,7 @@ Section: debug Priority: extra Depends: ${misc:Depends}, - libosmo-gtlv0 (= ${binary:Version}) + libosmo-gtlv1 (= ${binary:Version}) Description: Debug symbols for libosmo-gtlv libosmo-gtlv implements decoding, encoding and logging of protocols using a Tag-Length-Value and/or Tag-Length-Instance-Value structure. This package in @@ -69,7 +69,7 @@ Multi-Arch: same Depends: ${shlibs:Depends}, ${misc:Depends}, - libosmo-gtlv0 (= ${binary:Version}) + libosmo-gtlv1 (= ${binary:Version}) Pre-Depends: ${misc:Pre-Depends} Description: PFCP protocol support Decoding, encoding and endpoint implementation of the Packet Forwarding Control Protocol diff --git a/debian/libosmo-gtlv0.install b/debian/libosmo-gtlv1.install similarity index 100% rename from debian/libosmo-gtlv0.install rename to debian/libosmo-gtlv1.install diff --git a/debian/rules b/debian/rules index e32eb67..7b522af 100755 --- a/debian/rules +++ b/debian/rules @@ -55,7 +55,7 @@ # See
https://www.debian.org/doc/manuals/developers-reference/best-pkging-practic…
override_dh_strip: - dh_strip -plibosmo-gtlv0 --dbg-package=libosmo-gtlv-dbg + dh_strip -plibosmo-gtlv1 --dbg-package=libosmo-gtlv-dbg dh_strip -plibosmo-pfcp0 --dbg-package=libosmo-pfcp-dbg # Print test results in case of a failure diff --git a/src/libosmo-gtlv/Makefile.am b/src/libosmo-gtlv/Makefile.am index af0f839..1c40386 100644 --- a/src/libosmo-gtlv/Makefile.am +++ b/src/libosmo-gtlv/Makefile.am @@ -29,6 +29,6 @@ # This is _NOT_ the library release version, it's an API version. # Please read Chapter 6 "Library interface versions" of the libtool # documentation before making any modification -LIBVERSION=0:0:0 +LIBVERSION=1:0:0 libosmo_gtlv_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined -export-symbols-regex '^osmo_' diff --git a/src/libosmo-pfcp/Makefile.am b/src/libosmo-pfcp/Makefile.am index 6ca88b8..578ac0b 100644 --- a/src/libosmo-pfcp/Makefile.am +++ b/src/libosmo-pfcp/Makefile.am @@ -38,7 +38,7 @@ # This is _NOT_ the library release version, it's an API version. # Please read Chapter 6 "Library interface versions" of the libtool # documentation before making any modification -LIBVERSION=0:0:0 +LIBVERSION=1:0:1 libosmo_pfcp_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined -export-symbols-regex '^osmo_' -- To view, visit
https://gerrit.osmocom.org/c/libosmo-pfcp/+/31208
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-pfcp Gerrit-Branch: master Gerrit-Change-Id: I44bb6b839a6aefaf269e124c990ff0f0b837588d Gerrit-Change-Number: 31208 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: merged
2 years, 4 months
1
0
0
0
Change in libosmo-pfcp[master]: Bump version: 0.1.2.25-9c96-dirty → 0.2.0
by pespin
pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/libosmo-pfcp/+/31208
) Change subject: Bump version: 0.1.2.25-9c96-dirty → 0.2.0 ...................................................................... Patch Set 1: Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/libosmo-pfcp/+/31208
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-pfcp Gerrit-Branch: master Gerrit-Change-Id: I44bb6b839a6aefaf269e124c990ff0f0b837588d Gerrit-Change-Number: 31208 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-Comment-Date: Tue, 07 Feb 2023 13:04:17 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
2 years, 4 months
1
0
0
0
Change in libusrp[master]: Bump version: 3.4.6.2-7f277 → 3.4.7
by pespin
pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/libusrp/+/31209
) Change subject: Bump version: 3.4.6.2-7f277 → 3.4.7 ...................................................................... Bump version: 3.4.6.2-7f277 → 3.4.7 Change-Id: I99e104cbcf33eec9f484ff3a8abf7162a1ac821b --- M debian/changelog 1 file changed, 8 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/libusrp refs/changes/09/31209/1 diff --git a/debian/changelog b/debian/changelog index 916fc03..712a254 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +libusrp (3.4.7) unstable; urgency=medium + + [ Oliver Smith ] + * host/lib/Makefile.am: fix 'make uninstall' + * gitignore: add /.version + + -- Pau Espin Pedrol <pespin(a)sysmocom.de> Tue, 07 Feb 2023 14:00:21 +0100 + libusrp (3.4.6) unstable; urgency=medium [ Oliver Smith ] -- To view, visit
https://gerrit.osmocom.org/c/libusrp/+/31209
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: libusrp Gerrit-Branch: master Gerrit-Change-Id: I99e104cbcf33eec9f484ff3a8abf7162a1ac821b Gerrit-Change-Number: 31209 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: newchange
2 years, 4 months
1
0
0
0
← Newer
1
...
208
209
210
211
212
213
214
...
261
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
Results per page:
10
25
50
100
200