Fix udp bug

This commit is contained in:
2026-07-07 22:30:46 +03:00
parent 1ecca099d8
commit a4c05af5c8
6 changed files with 31 additions and 36 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ class Program
builder.Services.AddSingleton<IChannelInteractionModule, ChannelInteractionModule>();
builder.Services.AddSingleton<IUntrustedInteractionModule, UdpUntrustedInteraction>();
builder.Services.AddSingleton<IRepresentationModule, RepresentationModule>();
var serverEndPoint = new IPEndPoint(IPAddress.Loopback, 9000);
var serverEndPoint = new IPEndPoint(IPAddress.Loopback, 4567);
builder.Services.AddSingleton<IFrontendBridge, NetworkFrontendBridge>();
builder.Services.AddOptions();