diff --git a/Example.Events.Backend/Program.cs b/Example.Events.Backend/Program.cs index b5c9964..3bd1f89 100644 --- a/Example.Events.Backend/Program.cs +++ b/Example.Events.Backend/Program.cs @@ -17,7 +17,7 @@ class Program // builder.UseJsonSerialisation(); builder.Modules.Add(new CborSerializationToolkit()); builder.Modules.Add(new BackendIdentityGenerator()); - builder.UseNetworkGateway(new IPEndPoint(IPAddress.Loopback, 4567), typeof(NextGenerationInteractionModule), + builder.UseNetworkGateway(IPEndPoint.Parse("192.168.1.101:6000"), typeof(NextGenerationInteractionModule), builder.GetModule()!); builder.Modules.Add(new ConnectionHub()); diff --git a/Example.Events.Client/Program.cs b/Example.Events.Client/Program.cs index 6d45ec6..2a3e14c 100644 --- a/Example.Events.Client/Program.cs +++ b/Example.Events.Client/Program.cs @@ -21,7 +21,7 @@ class Program builder.Modules.Add(new RemoteContextRepository()); builder.Modules.Add(new NextGenerationInteractionModule()); builder.Modules.Add(new RepresentationModule()); - builder.Modules.Add(new NetworkFrontendBridge(new IPEndPoint(IPAddress.Loopback, 4567))); + builder.Modules.Add(new NetworkFrontendBridge(new IPEndPoint(IPAddress.Parse("95.105.78.72"), 6000))); builder.Modules.Add(new StaticRepresentationModuleProducer()); builder.Modules.Add(new RequestExtractor()); builder.Modules.Add(new BasicExecutionModule()); diff --git a/Example.Frontend/Program.cs b/Example.Frontend/Program.cs index 156026d..c4fb975 100644 --- a/Example.Frontend/Program.cs +++ b/Example.Frontend/Program.cs @@ -24,7 +24,7 @@ class Program builder.Modules.Add(new RemoteContextRepository()); builder.Modules.Add(new NextGenerationInteractionModule()); builder.Modules.Add(new RepresentationModule()); - builder.Modules.Add(new NetworkFrontendBridge(new IPEndPoint(IPAddress.Loopback, 4567))); + builder.Modules.Add(new NetworkFrontendBridge(new IPEndPoint(IPAddress.Parse("95.105.78.72"), 4567))); builder.Modules.Add(new StaticRepresentationModuleProducer()); builder.Modules.Add(new RequestExtractor()); builder.Modules.Add(new BasicExecutionModule());