laforge has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-hnbgw/+/36481?usp=email )


Change subject: HNBAP: Support IMSI identity type in hnbgw_tx_ue_register_rej()
......................................................................

HNBAP: Support IMSI identity type in hnbgw_tx_ue_register_rej()

Change-Id: I2e00968cbf686f78f5c9655e899963f2b84dd78b
---
M src/osmo-hnbgw/hnbgw_hnbap.c
1 file changed, 20 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-hnbgw refs/changes/81/36481/1

diff --git a/src/osmo-hnbgw/hnbgw_hnbap.c b/src/osmo-hnbgw/hnbgw_hnbap.c
index 6d3c8e0..28b9abd 100644
--- a/src/osmo-hnbgw/hnbgw_hnbap.c
+++ b/src/osmo-hnbgw/hnbgw_hnbap.c
@@ -270,6 +270,14 @@
                                     ue_id->choice.pTMSIRAI.rAI.rAC.size);
                break;
 
+       case HNBAP_UE_Identity_PR_iMSI:
+               LOGHNB(hnb, DHNBAP, LOGL_DEBUG, "REJ UE_Id IMSI %s\n",
+                       osmo_hexdump_nospc(ue_id->choice.iMSI.buf, 
ue_id->choice.iMSI.size));
+               OCTET_STRING_fromBuf(&reject.uE_Identity.choice.iMSI,
+                                     (const char *)ue_id->choice.iMSI.buf,
+                                    ue_id->choice.iMSI.size);
+               break;
+
        default:
                LOGHNB(hnb, DHNBAP, LOGL_ERROR, "Cannot compose UE Register 
Reject:"
                     " unsupported UE ID (present=%d)\n", ue_id->present);
@@ -311,6 +319,9 @@
                ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
                                              
&reject.uE_Identity.choice.pTMSIRAI.rAI.rAC);
                break;
+       case HNBAP_UE_Identity_PR_iMSI:
+               ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_OCTET_STRING,
+                                             &reject.uE_Identity.choice.iMSI);

        default:
                /* should never happen after above switch() */

--
To view, visit https://gerrit.osmocom.org/c/osmo-hnbgw/+/36481?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-hnbgw
Gerrit-Branch: master
Gerrit-Change-Id: I2e00968cbf686f78f5c9655e899963f2b84dd78b
Gerrit-Change-Number: 36481
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <lafo...@osmocom.org>
Gerrit-MessageType: newchange

Reply via email to