dexter has submitted this change. ( https://gerrit.osmocom.org/c/onomondo-eim/+/42875?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: esipa_asn1_codec: add special handling for ProvideEimPackageResultResponse ......................................................................
esipa_asn1_codec: add special handling for ProvideEimPackageResultResponse
In SGP.32 V.1.2 ProvideEimPackageResultResponse is defined as a CHOICE. This means that this struct now also requires special handling.
Change-Id: I859a175cc28a18ea9334d9b2cf233294fdc95b76 Related: SYS#8100 --- M src/esipa_asn1_codec.erl 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve
diff --git a/src/esipa_asn1_codec.erl b/src/esipa_asn1_codec.erl index 4102575..23cab53 100644 --- a/src/esipa_asn1_codec.erl +++ b/src/esipa_asn1_codec.erl @@ -28,6 +28,8 @@ 'SGP32Definitions':encode('GetBoundProfilePackageResponseEsipa', EimToIpaChoice); encode_eim_to_ipa({cancelSessionResponseEsipa, EimToIpaChoice}) -> 'SGP32Definitions':encode('CancelSessionResponseEsipa', EimToIpaChoice); +encode_eim_to_ipa({provideEimPackageResultResponse, EimToIpaChoice}) -> + 'SGP32Definitions':encode('ProvideEimPackageResultResponse', EimToIpaChoice); encode_eim_to_ipa(emptyResponse) -> {ok, <<>>}; encode_eim_to_ipa(EimToIpa) ->