Skip to content

Commit

Permalink
Merge branch 'main' into enterexitidle
Browse files Browse the repository at this point in the history
Signed-off-by: Valentin <[email protected]>
  • Loading branch information
linouxis9 authored Jan 1, 2024
2 parents eb8c217 + d5a4c19 commit 4c172b0
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 4 deletions.
38 changes: 38 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "D'Emmanuele"
given-names: "Valentin"
orcid: "https://orcid.org/0009-0008-5802-401X"
- family-names: "Raguideau"
given-names: "Akiya"
title: "PacketRusher: High performance 5G UE/gNB Simulator and CP/UP load tester"
version: 1.0.0
doi: 10.5281/zenodo.10446651
date-released: 2023-11-29
url: "https://github.com/HewlettPackard/PacketRusher"
references:
- type: article
authors:
- given-name: Lucas
family-name: Silveira
name-suffix: B.D.
- given-name: Henrique
family-name: de Resende
- given-name: Cristiano
family-name: Both
name-suffix: B.
- given-name: Johann
family-name: Marquez-Barja
name-suffix: M.
- given-name: Bruno
family-name: Silvestre
- given-name: Kleber
family-name: Cardoso
name-suffix: V.
title: "Tutorial on communication between access networks and the 5G core"
year: 2022
journal: Computer Networks
volume: 216
doi: 10.1016/j.comnet.2022.109301
url: https://doi.org/10.1016/j.comnet.2022.109301
2 changes: 1 addition & 1 deletion internal/control_test_engine/gnb/ngap/handler/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ func HandlerErrorIndication(gnb *context.GNBContext, message *ngapType.NGAPPDU)
}
}

log.Warn("[GNB][AMF] Received an Error Indication for UE with AMF UE ID: ", amfUeId, ", RAN UE ID: ", ranUeId)
log.Warn("[GNB][AMF] Received an Error Indication for UE with AMF UE ID: ", amfUeId, " RAN UE ID: ", ranUeId)
}

func getUeFromContext(gnb *context.GNBContext, ranUeId int64, amfUeId int64) *context.GNBUe {
Expand Down
2 changes: 1 addition & 1 deletion internal/control_test_engine/gnb/ngap/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func GnbListen(amf *context.GNBAmf, gnb *context.GNBContext) {
copy(forwardData, buf[:n])

// handling NGAP message.
ngap.Dispatch(amf, gnb, forwardData)
go ngap.Dispatch(amf, gnb, forwardData)

}

Expand Down
4 changes: 2 additions & 2 deletions internal/control_test_engine/ue/ue.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ func ueMgrHandler(msg procedures.UeTesterMessage, ue *context.UEContext, gnb *co
trigger.InitPduSessionRelease(ue, pduSession)
select {
case <-pduSession.Wait:
case <-time.After(5 * time.Millisecond):
// If still unregistered after 5 ms, continue
case <-time.After(500 * time.Millisecond):
// If still unregistered after 500 ms, continue
}
}
}
Expand Down

0 comments on commit 4c172b0

Please sign in to comment.