fixeria has submitted this change. ( https://gerrit.osmocom.org/c/python/osmo-python-tests/+/41051?usp=email )
Change subject: debian: do not install osmo-ctrl2cgi.service
......................................................................
debian: do not install osmo-ctrl2cgi.service
This service is calling scripts/ctrl2cgi.py, which has been deprecated
and is no longer part of the package (there's no /usr/bin/ctrl2cgi.py).
Change-Id: I6250f92d12774c69a8647b8cd26d0aa715646724
Fixes: 36cfd17 ("setup.py: do not install scripts/{soap,ctrl2cgi}.py")
---
D debian/python3-osmopy-utils.osmo-ctrl2cgi.service
M debian/rules
2 files changed, 0 insertions(+), 2 deletions(-)
Approvals:
pespin: Looks good to me, but someone else must approve
osmith: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/debian/python3-osmopy-utils.osmo-ctrl2cgi.service b/debian/python3-osmopy-utils.osmo-ctrl2cgi.service
deleted file mode 120000
index 9d9498d..0000000
--- a/debian/python3-osmopy-utils.osmo-ctrl2cgi.service
+++ /dev/null
@@ -1 +0,0 @@
-../contrib/systemd/osmo-ctrl2cgi.service
\ No newline at end of file
diff --git a/debian/rules b/debian/rules
index ff16a03..84ef719 100755
--- a/debian/rules
+++ b/debian/rules
@@ -12,5 +12,4 @@
override_dh_installinit:
# Install service file with different name than package name:
# https://unix.stackexchange.com/questions/306234/is-it-possible-to-install-t…
- dh_installinit --name=osmo-ctrl2cgi
dh_installinit --name=osmo-trap2cgi
--
To view, visit https://gerrit.osmocom.org/c/python/osmo-python-tests/+/41051?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: python/osmo-python-tests
Gerrit-Branch: master
Gerrit-Change-Id: I6250f92d12774c69a8647b8cd26d0aa715646724
Gerrit-Change-Number: 41051
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Attention is currently required from: daniel, fixeria, pespin.
osmith has posted comments on this change by osmith. ( https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41021?usp=email )
Change subject: Fix decoding of TCAP messages
......................................................................
Patch Set 3:
(1 comment)
Patchset:
PS2:
> ok, can you update the commit description to mention it doesn't work either with newer asn1c (<inser […]
Done
--
To view, visit https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41021?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmo-asn1-tcap
Gerrit-Branch: master
Gerrit-Change-Id: I4a27a52b2be70b1fc50e0a3d5441ded4c151fe65
Gerrit-Change-Number: 41021
Gerrit-PatchSet: 3
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-CC: daniel <dwillmann(a)sysmocom.de>
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: daniel <dwillmann(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 05 Sep 2025 13:22:40 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: pespin <pespin(a)sysmocom.de>
Comment-In-Reply-To: daniel <dwillmann(a)sysmocom.de>
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41058?usp=email )
Change subject: configure.ac: use subdir-objects
......................................................................
configure.ac: use subdir-objects
Fix a bunch of warnings:
src/Makefile.am:1: warning: source file 'gen/TCAP_DialoguePDU.c' is in a subdirectory,
src/Makefile.am:1: but option 'subdir-objects' is disabled
src/Makefile.am:1: warning: source file 'gen/TCAP_AUDT-apdu.c' is in a subdirectory,
src/Makefile.am:1: but option 'subdir-objects' is disabled
src/Makefile.am:1: warning: source file 'gen/NULL_ber.c' is in a subdirectory,
src/Makefile.am:1: but option 'subdir-objects' is disabled
src/Makefile.am:1: warning: source file 'gen/asn_codecs_prim_ber.c' is in a subdirectory,
src/Makefile.am:1: but option 'subdir-objects' is disabled
…
Change-Id: I800c8d8e39923a8dd17e3bf1e5aeb1cf691383d8
---
M configure.ac
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-asn1-tcap refs/changes/58/41058/1
diff --git a/configure.ac b/configure.ac
index 7ab015e..e301c64 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_INIT([libosmo-asn1-tcap], 0.0.0, [openbsc-devel(a)lists.openbsc.org])
-AM_INIT_AUTOMAKE([dist-bzip2])
+AM_INIT_AUTOMAKE([dist-bzip2 subdir-objects])
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
--
To view, visit https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41058?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: libosmo-asn1-tcap
Gerrit-Branch: master
Gerrit-Change-Id: I800c8d8e39923a8dd17e3bf1e5aeb1cf691383d8
Gerrit-Change-Number: 41058
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Attention is currently required from: laforge, osmith.
Hello Jenkins Builder, laforge,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41023?usp=email
to look at the new patch set (#4).
The following approvals got outdated and were removed:
Code-Review+1 by laforge, Verified+1 by Jenkins Builder
Change subject: debian: initial
......................................................................
debian: initial
Change-Id: I8ab1b2d69b5617c91ac694bf4a754d6c28b080dd
---
M Makefile.am
A debian/changelog
A debian/compat
A debian/control
A debian/libosmo-asn1-tcap-dev.install
A debian/libosmo-asn1-tcap0.install
A debian/rules
A debian/source/format
8 files changed, 70 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-asn1-tcap refs/changes/23/41023/4
--
To view, visit https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41023?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: libosmo-asn1-tcap
Gerrit-Branch: master
Gerrit-Change-Id: I8ab1b2d69b5617c91ac694bf4a754d6c28b080dd
Gerrit-Change-Number: 41023
Gerrit-PatchSet: 4
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Attention is currently required from: daniel, fixeria, osmith.
Hello Jenkins Builder, daniel, fixeria,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41021?usp=email
to look at the new patch set (#3).
The following approvals got outdated and were removed:
Code-Review+1 by daniel, Code-Review+1 by fixeria, Verified+1 by osmith
Change subject: Fix decoding of TCAP messages
......................................................................
Fix decoding of TCAP messages
Recent versions of asn1c fail while decoding the DialoguePortion of a TCAP
message - probably because Tag APPLICATION 11 is sent as constructed tag and
the WS adaptation expects a primitive one. Not sure if this ever worked
with an older asn1c version, maybe it ignored this discrepancy.
The described behavior also happens with mouse07410/asn1c 2c06555 used
in the next patch to regenerate the code.
In any case the correct encoding of the DialoguePortion is as EXTERNAL.
Support for proper EXTERNAL asn1c decoding is missing in all versions of asn1c
except https://github.com/mouse07410/asn1c (See PR #3/#5) so use that
when regenerating.
Related: SYS#7486
Change-Id: I4a27a52b2be70b1fc50e0a3d5441ded4c151fe65
---
M asn/tcap.asn
1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-asn1-tcap refs/changes/21/41021/3
--
To view, visit https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41021?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: libosmo-asn1-tcap
Gerrit-Branch: master
Gerrit-Change-Id: I4a27a52b2be70b1fc50e0a3d5441ded4c151fe65
Gerrit-Change-Number: 41021
Gerrit-PatchSet: 3
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-CC: daniel <dwillmann(a)sysmocom.de>
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: daniel <dwillmann(a)sysmocom.de>
Attention is currently required from: daniel, osmith, pespin.
Hello Jenkins Builder, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41022?usp=email
to look at the new patch set (#4).
The following approvals got outdated and were removed:
Code-Review-1 by pespin, Verified+1 by osmith
Change subject: Regenerate code with newer asn1c
......................................................................
Regenerate code with newer asn1c
asn1c used from: https://github.com/mouse07410/asn1c
branch: vlm_master
commit: 2c06555 ("Fix #239 by applying suggested fix")
This no longer uses/requires libasn1c so drop the dependency and modify
the build system similar to osmo-cbc/src/sbcap/
Tweaked-By: Oliver Smith <osmith(a)sysmocom.de>
Related: SYS#5423
Change-Id: If43a5d518f94fa558a3dff563a1c7aa31c925fec
---
M Makefile.am
M configure.ac
M contrib/jenkins.sh
D include/AARE-apdu.h
D include/AARQ-apdu.h
D include/ABRT-apdu.h
D include/AUDT-apdu.h
D include/Abort.h
D include/Associate-source-diagnostic.h
D include/Begin.h
D include/Continue.h
D include/DialogueOC.h
D include/EXTERNAL.h
D include/End.h
D include/Invoke.h
M include/Makefile.am
D include/RLRE-apdu.h
D include/RLRQ-apdu.h
D include/Reject.h
D include/ReturnError.h
D include/Unidirectional.h
A include/osmocom/Makefile.am
A include/osmocom/tcap/AARE-apdu.h
A include/osmocom/tcap/AARQ-apdu.h
A include/osmocom/tcap/ABRT-apdu.h
R include/osmocom/tcap/ABRT-source.h
A include/osmocom/tcap/ANY.h
A include/osmocom/tcap/AUDT-apdu.h
A include/osmocom/tcap/Abort.h
R include/osmocom/tcap/Associate-result.h
A include/osmocom/tcap/Associate-source-diagnostic.h
A include/osmocom/tcap/BIT_STRING.h
A include/osmocom/tcap/Begin.h
R include/osmocom/tcap/Component.h
R include/osmocom/tcap/ComponentPortion.h
A include/osmocom/tcap/Continue.h
R include/osmocom/tcap/DestTransactionID.h
R include/osmocom/tcap/Dialog1.h
R include/osmocom/tcap/DialoguePDU.h
R include/osmocom/tcap/DialoguePortion.h
R include/osmocom/tcap/ERROR.h
A include/osmocom/tcap/EXTERNAL.h
A include/osmocom/tcap/End.h
R include/osmocom/tcap/ErrorCode.h
R include/osmocom/tcap/ExternalPDU.h
R include/osmocom/tcap/GeneralProblem.h
A include/osmocom/tcap/GraphicString.h
A include/osmocom/tcap/INTEGER.h
A include/osmocom/tcap/Invoke.h
R include/osmocom/tcap/InvokeIdType.h
R include/osmocom/tcap/InvokeProblem.h
A include/osmocom/tcap/Makefile.am
A include/osmocom/tcap/NULL.h
A include/osmocom/tcap/NativeInteger.h
A include/osmocom/tcap/OBJECT_IDENTIFIER.h
A include/osmocom/tcap/OCTET_STRING.h
A include/osmocom/tcap/OPEN_TYPE.h
R include/osmocom/tcap/OPERATION.h
A include/osmocom/tcap/ObjectDescriptor.h
R include/osmocom/tcap/OrigTransactionID.h
R include/osmocom/tcap/P-AbortCause.h
R include/osmocom/tcap/Parameter.h
A include/osmocom/tcap/RLRE-apdu.h
A include/osmocom/tcap/RLRQ-apdu.h
R include/osmocom/tcap/Reason.h
A include/osmocom/tcap/Reject.h
R include/osmocom/tcap/Release-request-reason.h
R include/osmocom/tcap/Release-response-reason.h
A include/osmocom/tcap/ReturnError.h
R include/osmocom/tcap/ReturnErrorProblem.h
R include/osmocom/tcap/ReturnResult.h
R include/osmocom/tcap/ReturnResultProblem.h
A include/osmocom/tcap/TCAP_AARE-apdu.h
A include/osmocom/tcap/TCAP_AARQ-apdu.h
A include/osmocom/tcap/TCAP_ABRT-apdu.h
A include/osmocom/tcap/TCAP_ABRT-source.h
A include/osmocom/tcap/TCAP_AUDT-apdu.h
A include/osmocom/tcap/TCAP_Abort.h
A include/osmocom/tcap/TCAP_Associate-result.h
A include/osmocom/tcap/TCAP_Associate-source-diagnostic.h
A include/osmocom/tcap/TCAP_Begin.h
A include/osmocom/tcap/TCAP_Component.h
A include/osmocom/tcap/TCAP_ComponentPortion.h
A include/osmocom/tcap/TCAP_Continue.h
A include/osmocom/tcap/TCAP_DestTransactionID.h
A include/osmocom/tcap/TCAP_Dialog1.h
A include/osmocom/tcap/TCAP_DialoguePDU.h
A include/osmocom/tcap/TCAP_DialoguePortion.h
A include/osmocom/tcap/TCAP_ERROR.h
A include/osmocom/tcap/TCAP_EXTERNAL.h
A include/osmocom/tcap/TCAP_End.h
A include/osmocom/tcap/TCAP_ErrorCode.h
A include/osmocom/tcap/TCAP_ExternalPDU.h
A include/osmocom/tcap/TCAP_GeneralProblem.h
A include/osmocom/tcap/TCAP_Invoke.h
A include/osmocom/tcap/TCAP_InvokeIdType.h
A include/osmocom/tcap/TCAP_InvokeProblem.h
A include/osmocom/tcap/TCAP_OPERATION.h
A include/osmocom/tcap/TCAP_OrigTransactionID.h
A include/osmocom/tcap/TCAP_P-AbortCause.h
A include/osmocom/tcap/TCAP_Parameter.h
A include/osmocom/tcap/TCAP_RLRE-apdu.h
A include/osmocom/tcap/TCAP_RLRQ-apdu.h
A include/osmocom/tcap/TCAP_Reason.h
A include/osmocom/tcap/TCAP_Reject.h
A include/osmocom/tcap/TCAP_Release-request-reason.h
A include/osmocom/tcap/TCAP_Release-response-reason.h
A include/osmocom/tcap/TCAP_ReturnError.h
A include/osmocom/tcap/TCAP_ReturnErrorProblem.h
A include/osmocom/tcap/TCAP_ReturnResult.h
A include/osmocom/tcap/TCAP_ReturnResultProblem.h
A include/osmocom/tcap/TCAP_TCMessage.h
A include/osmocom/tcap/TCAP_UniDialoguePDU.h
A include/osmocom/tcap/TCAP_Unidirectional.h
A include/osmocom/tcap/TCAP_asn_constant.h
R include/osmocom/tcap/TCMessage.h
R include/osmocom/tcap/UniDialoguePDU.h
A include/osmocom/tcap/Unidirectional.h
A include/osmocom/tcap/asn_SEQUENCE_OF.h
A include/osmocom/tcap/asn_SET_OF.h
A include/osmocom/tcap/asn_application.h
A include/osmocom/tcap/asn_bit_data.h
A include/osmocom/tcap/asn_codecs.h
A include/osmocom/tcap/asn_codecs_prim.h
A include/osmocom/tcap/asn_config.h
A include/osmocom/tcap/asn_constant.h
A include/osmocom/tcap/asn_internal.h
A include/osmocom/tcap/asn_ioc.h
A include/osmocom/tcap/asn_random_fill.h
A include/osmocom/tcap/asn_system.h
A include/osmocom/tcap/ber_decoder.h
A include/osmocom/tcap/ber_tlv_length.h
A include/osmocom/tcap/ber_tlv_tag.h
A include/osmocom/tcap/constr_CHOICE.h
A include/osmocom/tcap/constr_SEQUENCE.h
A include/osmocom/tcap/constr_SEQUENCE_OF.h
A include/osmocom/tcap/constr_SET_OF.h
A include/osmocom/tcap/constr_TYPE.h
A include/osmocom/tcap/constraints.h
A include/osmocom/tcap/der_encoder.h
M libosmo-asn1-tcap.pc.in
A move-asn1-header-files.sh
D src/AARE-apdu.c
D src/AARQ-apdu.c
D src/ABRT-apdu.c
D src/ABRT-source.c
D src/AUDT-apdu.c
D src/Abort.c
D src/Associate-result.c
D src/Associate-source-diagnostic.c
D src/Begin.c
D src/Component.c
D src/ComponentPortion.c
D src/Continue.c
D src/DestTransactionID.c
D src/Dialog1.c
D src/DialogueOC.c
D src/DialoguePDU.c
D src/DialoguePortion.c
D src/ERROR.c
D src/End.c
D src/ErrorCode.c
D src/ExternalPDU.c
D src/GeneralProblem.c
D src/Invoke.c
D src/InvokeIdType.c
D src/InvokeProblem.c
M src/Makefile.am
D src/OPERATION.c
D src/OrigTransactionID.c
D src/P-AbortCause.c
D src/Parameter.c
D src/RLRE-apdu.c
D src/RLRQ-apdu.c
D src/Reason.c
D src/Reject.c
D src/Release-request-reason.c
D src/Release-response-reason.c
D src/ReturnError.c
D src/ReturnErrorProblem.c
D src/ReturnResult.c
D src/ReturnResultProblem.c
D src/TCMessage.c
D src/UniDialoguePDU.c
D src/Unidirectional.c
A src/gen/ABRT-source.c
A src/gen/ANY.c
A src/gen/ANY_ber.c
A src/gen/Associate-result.c
A src/gen/BIT_STRING.c
A src/gen/BIT_STRING_print.c
A src/gen/BIT_STRING_rfill.c
A src/gen/DialoguePortion.c
A src/gen/GeneralProblem.c
A src/gen/GraphicString.c
A src/gen/INTEGER.c
A src/gen/INTEGER_ber.c
A src/gen/INTEGER_print.c
A src/gen/INTEGER_rfill.c
A src/gen/InvokeProblem.c
A src/gen/NULL.c
A src/gen/NULL_ber.c
A src/gen/NULL_print.c
A src/gen/NULL_rfill.c
A src/gen/NativeInteger.c
A src/gen/NativeInteger_ber.c
A src/gen/NativeInteger_print.c
A src/gen/NativeInteger_rfill.c
A src/gen/OBJECT_IDENTIFIER.c
A src/gen/OBJECT_IDENTIFIER_print.c
A src/gen/OBJECT_IDENTIFIER_rfill.c
A src/gen/OCTET_STRING.c
A src/gen/OCTET_STRING_ber.c
A src/gen/OCTET_STRING_print.c
A src/gen/OCTET_STRING_rfill.c
A src/gen/OPEN_TYPE.c
A src/gen/OPEN_TYPE_ber.c
A src/gen/ObjectDescriptor.c
A src/gen/Release-request-reason.c
A src/gen/Release-response-reason.c
A src/gen/ReturnErrorProblem.c
A src/gen/ReturnResultProblem.c
A src/gen/TCAP_AARE-apdu.c
A src/gen/TCAP_AARQ-apdu.c
A src/gen/TCAP_ABRT-apdu.c
A src/gen/TCAP_ABRT-source.c
A src/gen/TCAP_AUDT-apdu.c
A src/gen/TCAP_Abort.c
A src/gen/TCAP_Associate-result.c
A src/gen/TCAP_Associate-source-diagnostic.c
A src/gen/TCAP_Begin.c
A src/gen/TCAP_Component.c
A src/gen/TCAP_ComponentPortion.c
A src/gen/TCAP_Continue.c
A src/gen/TCAP_DestTransactionID.c
A src/gen/TCAP_Dialog1.c
A src/gen/TCAP_DialoguePDU.c
A src/gen/TCAP_DialoguePortion.c
A src/gen/TCAP_ERROR.c
A src/gen/TCAP_EXTERNAL.c
A src/gen/TCAP_End.c
A src/gen/TCAP_ErrorCode.c
A src/gen/TCAP_ExternalPDU.c
A src/gen/TCAP_GeneralProblem.c
A src/gen/TCAP_Invoke.c
A src/gen/TCAP_InvokeIdType.c
A src/gen/TCAP_InvokeProblem.c
A src/gen/TCAP_OPERATION.c
A src/gen/TCAP_OrigTransactionID.c
A src/gen/TCAP_P-AbortCause.c
A src/gen/TCAP_Parameter.c
A src/gen/TCAP_RLRE-apdu.c
A src/gen/TCAP_RLRQ-apdu.c
A src/gen/TCAP_Reason.c
A src/gen/TCAP_Reject.c
A src/gen/TCAP_Release-request-reason.c
A src/gen/TCAP_Release-response-reason.c
A src/gen/TCAP_ReturnError.c
A src/gen/TCAP_ReturnErrorProblem.c
A src/gen/TCAP_ReturnResult.c
A src/gen/TCAP_ReturnResultProblem.c
A src/gen/TCAP_TCMessage.c
A src/gen/TCAP_UniDialoguePDU.c
A src/gen/TCAP_Unidirectional.c
A src/gen/asn_SEQUENCE_OF.c
A src/gen/asn_SET_OF.c
A src/gen/asn_application.c
A src/gen/asn_bit_data.c
A src/gen/asn_codecs_prim.c
A src/gen/asn_codecs_prim_ber.c
A src/gen/asn_internal.c
A src/gen/asn_random_fill.c
A src/gen/ber_decoder.c
A src/gen/ber_tlv_length.c
A src/gen/ber_tlv_tag.c
A src/gen/constr_CHOICE.c
A src/gen/constr_CHOICE_ber.c
A src/gen/constr_CHOICE_print.c
A src/gen/constr_CHOICE_rfill.c
A src/gen/constr_SEQUENCE.c
A src/gen/constr_SEQUENCE_OF.c
A src/gen/constr_SEQUENCE_OF_ber.c
A src/gen/constr_SEQUENCE_ber.c
A src/gen/constr_SEQUENCE_print.c
A src/gen/constr_SEQUENCE_rfill.c
A src/gen/constr_SET_OF.c
A src/gen/constr_SET_OF_ber.c
A src/gen/constr_SET_OF_print.c
A src/gen/constr_SET_OF_rfill.c
A src/gen/constr_TYPE.c
A src/gen/constraints.c
A src/gen/der_encoder.c
D src/rebuild-from-asn.sh
A src/skel/ANY.h
A src/skel/BIT_STRING.h
A src/skel/BMPString.h
A src/skel/BOOLEAN.h
A src/skel/ENUMERATED.h
A src/skel/GeneralString.h
A src/skel/GeneralizedTime.h
A src/skel/GraphicString.h
A src/skel/IA5String.h
A src/skel/INTEGER.h
A src/skel/ISO646String.h
A src/skel/NULL.h
A src/skel/NativeEnumerated.h
A src/skel/NativeInteger.h
A src/skel/NativeReal.h
A src/skel/NumericString.h
A src/skel/OBJECT_IDENTIFIER.h
A src/skel/OCTET_STRING.h
A src/skel/OPEN_TYPE.h
A src/skel/ObjectDescriptor.h
A src/skel/PrintableString.h
A src/skel/REAL.h
A src/skel/RELATIVE-OID.h
A src/skel/T61String.h
A src/skel/TeletexString.h
A src/skel/UTCTime.h
A src/skel/UTF8String.h
A src/skel/UniversalString.h
A src/skel/VideotexString.h
A src/skel/VisibleString.h
A src/skel/aper_decoder.h
A src/skel/aper_encoder.h
A src/skel/aper_opentype.h
A src/skel/aper_support.h
A src/skel/asn_SEQUENCE_OF.h
A src/skel/asn_SET_OF.h
A src/skel/asn_application.h
A src/skel/asn_bit_data.h
A src/skel/asn_codecs.h
A src/skel/asn_codecs_prim.h
A src/skel/asn_config.h
A src/skel/asn_internal.h
A src/skel/asn_ioc.h
A src/skel/asn_random_fill.h
A src/skel/asn_system.h
A src/skel/ber_decoder.h
A src/skel/ber_tlv_length.h
A src/skel/ber_tlv_tag.h
A src/skel/constr_CHOICE.h
A src/skel/constr_SEQUENCE.h
A src/skel/constr_SEQUENCE_OF.h
A src/skel/constr_SET.h
A src/skel/constr_SET_OF.h
A src/skel/constr_TYPE.h
A src/skel/constraints.h
A src/skel/der_encoder.h
A src/skel/jer_decoder.h
A src/skel/jer_encoder.h
A src/skel/jer_support.h
A src/skel/oer_decoder.h
A src/skel/oer_encoder.h
A src/skel/oer_support.h
A src/skel/per_decoder.h
A src/skel/per_encoder.h
A src/skel/per_opentype.h
A src/skel/per_support.h
A src/skel/uper_decoder.h
A src/skel/uper_encoder.h
A src/skel/uper_opentype.h
A src/skel/uper_support.h
A src/skel/xer_decoder.h
A src/skel/xer_encoder.h
A src/skel/xer_support.h
366 files changed, 27,340 insertions(+), 5,258 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-asn1-tcap refs/changes/22/41022/4
--
To view, visit https://gerrit.osmocom.org/c/libosmo-asn1-tcap/+/41022?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: libosmo-asn1-tcap
Gerrit-Branch: master
Gerrit-Change-Id: If43a5d518f94fa558a3dff563a1c7aa31c925fec
Gerrit-Change-Number: 41022
Gerrit-PatchSet: 4
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-CC: daniel <dwillmann(a)sysmocom.de>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: daniel <dwillmann(a)sysmocom.de>