Exception Running the Sample GameLift Code from AWS

0

I am using the Sample Multiplayer sample code from AWS GameLift named MegaFrogRace. I followed the instructions from the following URL: https://aws.amazon.com/blogs/gametech/creating-servers-for-multiplayer-mobile-games-with-amazon-gamelift/

I am using unity editor and Mac OS to run the sample Game. I uploaded the Game Server scripts and configured everything in the backend. But when I try to play the game in Multiplayer using GameLift, I am getting the following exception:

NotImplementedException: The method or operation is not implemented. at System.Net.NetworkInformation.UnixIPGlobalProperties.GetActiveUdpListeners () [0x00000] in <d2089eb4d5454c27b77bed2594d4c554>:0 at RTSClient.FindAvailableUDPPort (System.Int32 firstPort, System.Int32 lastPort) [0x00019] in <af5831d8f72447eaa46242e583778b16>:0 at RTSClient+<ConnectToServer>d__23.MoveNext () [0x000c0] in <af5831d8f72447eaa46242e583778b16>:0 at UnityEngine.SetupCoroutine.InvokeMoveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) [0x00027] in <db5455c3e45a43d8b185213394ee01c1>:0 UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator) UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) RTSClient:ActionConnectToServer(String, Int32, String) <>c__DisplayClass41_0`3:<QForMainThread>b__0() RTSClient:RunMainThreadQueueActions() RTSClient:Update()

(Filename: <d2089eb4d5454c27b77bed2594d4c554> Line: 0)

Kindly help me in figuring out the problem. Thanks

asked 3 years ago188 views
3 Answers
0
Accepted Answer

https://github.com/aws-samples/megafrograce-gamelift-realtime-servers-sample/pull/9

Replace the included FindAvailableUDPPort function with this one.

private static readonly IPEndPoint DefaultLoopbackEndpoint = new IPEndPoint(IPAddress.Loopback, port: 0);
private int FindAvailableUDPPort()
{
    using (var socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp))
    {
        socket.Bind(DefaultLoopbackEndpoint);
        int port = ((IPEndPoint)socket.LocalEndPoint).Port;
        return port;
    }
}

The function in the demo example was only created with Windows in mind. However this one will work for Windows, Mac, iOS, and Android. I'm unsure why they haven't tested this pull request yet?

answered 3 years ago
0

@REDACTEDUSER

Have reached out to a few folks to try and get the pull request handled.

answered 3 years ago
0

Thank you so much. I am able to play now.

answered 3 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions