-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsnssai.go
42 lines (35 loc) · 866 Bytes
/
snssai.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 2019 free5GC.org
//
// SPDX-License-Identifier: Apache-2.0
package context
import "github.com/omec-project/openapi/models"
type SNssai struct {
Sd string
Sst int32
}
// Equal return true if two S-NSSAI is equal
func (s *SNssai) Equal(target *SNssai) bool {
return s.Sst == target.Sst && s.Sd == target.Sd
}
type SnssaiUPFInfo struct {
SNssai SNssai
DnnList []DnnUPFInfoItem
}
// DnnUpfInfoItem presents UPF dnn information
type DnnUPFInfoItem struct {
Dnn string
DnaiList []string
PduSessionTypes []models.PduSessionType
}
// ContainsDNAI return true if the this dnn Info contains the specify DNAI
func (d *DnnUPFInfoItem) ContainsDNAI(targetDnai string) bool {
if targetDnai == "" {
return len(d.DnaiList) == 0
}
for _, dnai := range d.DnaiList {
if dnai == targetDnai {
return true
}
}
return false
}