From 1c517700d422f1129e409ca6ed2d2583ef282cf4 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 5 Jul 2017 17:22:08 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/HttpServer.cs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs index 98a191e2..6fd3b7af 100644 --- a/websocket-sharp/Server/HttpServer.cs +++ b/websocket-sharp/Server/HttpServer.cs @@ -215,27 +215,29 @@ namespace WebSocketSharp.Server /// /// /// - /// An instance initialized by this constructor listens for the incoming requests on + /// The new instance listens for incoming requests on /// and . /// /// - /// If is 443, that instance provides a secure connection. + /// It provides secure connections if is 443. /// /// /// - /// A that represents the local IP address of the server. + /// A that represents + /// the local IP address on which to listen. /// /// - /// An that represents the port number on which to listen. + /// An that represents the number of the port + /// on which to listen. /// /// /// is . /// /// - /// isn't a local IP address. + /// is not a local IP address. /// /// - /// isn't between 1 and 65535 inclusive. + /// is less than 1 or greater than 65535. /// public HttpServer (System.Net.IPAddress address, int port) : this (address, port, port == 443)