diff --git a/nex/register_common_secure_server_protocols.go b/nex/register_common_secure_server_protocols.go index 185e72a..119049e 100644 --- a/nex/register_common_secure_server_protocols.go +++ b/nex/register_common_secure_server_protocols.go @@ -1,9 +1,6 @@ package nex import ( - "slices" - - "github.com/PretendoNetwork/nex-go/v2" "github.com/PretendoNetwork/nex-go/v2/types" commonmatchmaking "github.com/PretendoNetwork/nex-protocols-common-go/v2/match-making" commonmatchmakingext "github.com/PretendoNetwork/nex-protocols-common-go/v2/match-making-ext" @@ -33,11 +30,6 @@ func cleanupMatchmakeSessionSearchCriteriasHandler(searchCriterias types.List[ma } } -func adjustPublicStationFirst(packet nex.PacketInterface, urls types.List[types.StationURL], dataHolder types.DataHolder) { - connection := packet.Sender().(*nex.PRUDPConnection) - slices.Reverse(connection.StationURLs) -} - func registerCommonSecureServerProtocols() { database.Setup() @@ -45,7 +37,6 @@ func registerCommonSecureServerProtocols() { globals.SecureEndpoint.RegisterServiceProtocol(secureProtocol) commonSecureProtocol := commonsecure.NewCommonProtocol(secureProtocol) commonSecureProtocol.EnableInsecureRegister() - commonSecureProtocol.OnAfterRegisterEx = adjustPublicStationFirst commonSecureProtocol.CreateReportDBRecord = CreateReportDBRecord natTraversalProtocol := nattraversal.NewProtocol()