Skip to content

Commit

Permalink
add recovery timestamp in association setup response
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog-spb committed Nov 21, 2023
1 parent ce8fd9a commit f85befc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/core/pfcp_handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ func HandlePfcpAssociationSetupRequest(conn *PfcpConnection, msg message.Message
asres := message.NewAssociationSetupResponse(asreq.SequenceNumber,
ie.NewCause(ie.CauseRequestAccepted), // a successful cause
newIeNodeID(conn.nodeId), // its Node ID;
ie.NewUPFunctionFeatures(), // information of all supported optional features in the UP function; We don't support any optional features at the moment
ie.NewRecoveryTimeStamp(time.Now()),
ie.NewUPFunctionFeatures(), // information of all supported optional features in the UP function; We don't support any optional features at the moment
// ... other IEs
// optionally one or more UE IP address Pool Information IE which contains a list of UE IP Address Pool Identities per Network Instance, S-NSSAI and IP version;
// optionally the NF Instance ID of the UPF if available
Expand Down

0 comments on commit f85befc

Please sign in to comment.