-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor and update util to use new log formatter setting #19
Conversation
go.mod
Outdated
github.com/sirupsen/logrus v1.8.1 | ||
github.com/urfave/cli v1.22.5 | ||
github.com/vishvananda/netlink v1.1.0 | ||
github.com/wmnsk/go-gtp v0.8.0 | ||
github.com/wmnsk/go-gtp v0.7.28 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be v0.8.0
go.mod
Outdated
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d | ||
github.com/free5gc/aper v1.0.4 | ||
github.com/free5gc/ngap v1.0.6 | ||
github.com/free5gc/util v1.0.3 | ||
github.com/free5gc/util v1.0.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be v1.0.5-0.20230306071612-a52909216bd2
internal/ngap/handler/handler.go
Outdated
@@ -429,126 +421,127 @@ func HandleInitialContextSetupRequest(amf *context.N3IWFAMF, message *ngapType.N | |||
var emergencyFallbackIndicator *ngapType.EmergencyFallbackIndicator | |||
var iesCriticalityDiagnostics ngapType.CriticalityDiagnosticsIEList | |||
|
|||
var n3iwfUe *context.N3IWFUe | |||
var n3iwfRanUe *context.N3IWFRanUe |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace all n3iwfRanUe
with ranUe
@@ -84,36 +406,117 @@ func N3IWFSelf() *N3IWFContext { | |||
return &n3iwfContext | |||
} | |||
|
|||
func (context *N3IWFContext) NewN3iwfUe() *N3IWFUe { | |||
func (context *N3IWFContext) NewN3iwfIkeUe(spi uint64) *N3IWFIkeUe { | |||
n3iwfIkeUe := new(N3IWFIkeUe) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace all n3iwfIkeUe
with ikeUe
No description provided.