You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Followed the udp echo server example, code get stuck at service.stop():
var service = new Service();
// Start the service
Console.Write("Service starting...");
service.Start();
Console.WriteLine("Done!");
// Create a new UDP echo server
var server = new EchoServer(service, port, InternetProtocol.IPv4);
// Start the server
Console.Write("Server starting...");
server.Start();
Console.WriteLine("Done!");
// Stop the server
Console.Write("Server stopping...");
server.Stop();
Console.WriteLine("Done!");
// Stop the service
Console.Write("Service stopping...");
service.Stop();
Console.WriteLine("Done!");
Just start the server and service, no client connection established yet.
The text was updated successfully, but these errors were encountered:
Followed the udp echo server example, code get stuck at service.stop():
var service = new Service();
// Stop the server
Console.Write("Server stopping...");
server.Stop();
Console.WriteLine("Done!");
Just start the server and service, no client connection established yet.
The text was updated successfully, but these errors were encountered: