diff --git a/Assets/Scripts/Server.cs b/Assets/Scripts/Server.cs index 4499d7e..8ffc595 100644 --- a/Assets/Scripts/Server.cs +++ b/Assets/Scripts/Server.cs @@ -1,4 +1,4 @@ -/********************** +/********************** ********LAVID********** *******VLibras********* *------------------------------------------------------------------------ @@ -33,7 +33,7 @@ public class Server : MonoBehaviour { public void startServer(){ try{ - IPAddress localAddr = IPAddress.Parse("127.0.0.1"); + IPAddress localAddr = IPAddress.Parse("0.0.0.0"); server = new TcpListener (localAddr, port); server.Start(); // Starts listening for incoming connection requests. client = server.AcceptTcpClient(); // Accepts a pending connection request. -- libgit2 0.21.2