From 4a8c6b369e82f8cabd3726f84b3408ee8ddffa5b Mon Sep 17 00:00:00 2001 From: donald1218 Date: Fri, 13 Sep 2024 04:47:47 +0000 Subject: [PATCH] fix: add comment --- internal/sbi/consumer/ausf_service.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/sbi/consumer/ausf_service.go b/internal/sbi/consumer/ausf_service.go index 61bc89c..1d213ba 100644 --- a/internal/sbi/consumer/ausf_service.go +++ b/internal/sbi/consumer/ausf_service.go @@ -121,6 +121,8 @@ func (s *nausfService) SendAuth5gAkaConfirmRequest(ue *amf_context.AmfUe, resSta if err != nil { return nil, nil, err } + // splituri = ["","nausf-auth","ue-authentications","{authctxId}","5g-aka-confirmation"] + // authctxId = {authctxId} splituri := strings.Split(confirmUri.RequestURI(), "/") authctxId := "" if len(splituri) > 4 { @@ -180,6 +182,8 @@ func (s *nausfService) SendEapAuthConfirmRequest(ue *amf_context.AmfUe, eapMsg n return nil, nil, err } + // splituri = ["","nausf-auth","ue-authentications","{authctxId}","eap-session"] + // authctxId = {authctxId} splituri := strings.Split(confirmUri.RequestURI(), "/") authctxId := "" if len(splituri) > 4 {