diff options
Diffstat (limited to 'pkg/api/api0/api.go')
-rw-r--r-- | pkg/api/api0/api.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/api/api0/api.go b/pkg/api/api0/api.go index 1c665f9..2e3593c 100644 --- a/pkg/api/api0/api.go +++ b/pkg/api/api0/api.go @@ -29,6 +29,7 @@ import ( "github.com/pg9182/ip2x" "github.com/r2northstar/atlas/pkg/eax" "github.com/r2northstar/atlas/pkg/metricsx" + "github.com/r2northstar/atlas/pkg/nspkt" "github.com/r2northstar/atlas/pkg/origin" "github.com/rs/zerolog/hlog" "golang.org/x/mod/semver" @@ -45,6 +46,9 @@ type Handler struct { // PdataStorage stores player data. It must be non-nil. PdataStorage PdataStorage + // NSPkt handles connectionless packets. It must be non-nil. + NSPkt *nspkt.Listener + // UsernameSource configures the source to use for usernames. UsernameSource UsernameSource |