Skip to content

Commit

Permalink
support to handle ServiceTypeHighPriorityAccess type SvcReq (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianchen0119 authored Feb 5, 2024
1 parent 9458f79 commit c19b0b4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions internal/gmm/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -1916,6 +1916,13 @@ func HandleServiceRequest(ue *context.AmfUe, anType models.AccessType,
if err != nil {
return err
}
case nasMessage.ServiceTypeHighPriorityAccess:
// TODO: support HighPriorityAccess
err := gmm_message.SendServiceAccept(ue, anType, cxtList, pduStatusResult,
reactivationResult, errPduSessionId, errCause)
if err != nil {
return err
}
default:
return fmt.Errorf("Service Type[%d] is not supported", serviceType)
}
Expand Down

0 comments on commit c19b0b4

Please sign in to comment.