Update LRMInspector.cs

This commit is contained in:
Derek S 2021-04-05 20:09:05 -05:00
parent 69682453be
commit c8fdaa96bb

View file

@ -15,7 +15,7 @@ namespace LightReflectiveMirror
[CustomEditor(typeof(LightReflectiveMirrorTransport))]
public class LRMInspector : Editor
{
int serverPort = 7070;
int serverPort = 8080;
string serverIP;
float invalidServerIP = 0;
bool usingLLB = false;
@ -65,6 +65,7 @@ namespace LightReflectiveMirror
lrm.loadBalancerAddress = serverAddr.ToString();
lrm.loadBalancerPort = (ushort)serverPort;
lrm.serverIP = "127.0.0.1";
lrm.useLoadBalancer = true;
usingLLB = false;
serverIP = "";
}