2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-04-29 06:48:41 +00:00

new TcpSocket

This commit is contained in:
2026-04-05 22:28:11 +03:00
parent 5c26c1aa5c
commit 7b5201418f
7 changed files with 634 additions and 18 deletions
+1 -1
View File
@@ -314,7 +314,7 @@ public class HttpServer : NetworkServer<HttpConnection>, IResource
if (SSL)
listener = new SSLSocket(new IPEndPoint(ipAdd, Port), new X509Certificate2(Certificate));
else
listener = new TCPSocket(new IPEndPoint(ipAdd, Port));
listener = new TcpSocket(new IPEndPoint(ipAdd, Port));
Start(listener);
}