nextmn / go-pfcp-networking

PFCP Networking functionalities on top of go-pfcp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-pfcp-networking: PFCP Networking functionalities on top of go-pfcp

Warning

Still a Work In Progress. API may change before v1.0.0.

Features

  • PFCP Sessions handling (currently only PFCP Session establishment procedure is supported)

Getting started

UPF

upNode := NewPFCPEntityUP(UPF_NODE_ID, UPF_IP_ADDR) // node id can be an IP Address or a FQDN
upNode.Start()
// Access list of associations
associations := upNode.GetPFCPAssociations()
// Access list of sessions
sessions := upNode.GetPFCPSessions()

SMF

cpNode := NewPFCPEntityCP(SMF_NODE_ID, SMF_IP_ADDR) // node id can be an IP Address or a FQDN
cpNode.Start()
association, _ := cpNode.NewEstablishedPFCPAssociation(ie.NewNodeIDHeuristic(UPFADDR))
session, _ := a.CreateSession(pdrs, fars)

Author

Louis Royer

License

MIT

About

PFCP Networking functionalities on top of go-pfcp

License:MIT License


Languages

Language:Go 100.0%