From 821139a569b2a7fc9cc783314e44927eab6ff1c5 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 5 Jul 2017 16:13:27 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Server/HttpServer.cs | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs index 939c6f0c..98a191e2 100644 --- a/websocket-sharp/Server/HttpServer.cs +++ b/websocket-sharp/Server/HttpServer.cs @@ -248,27 +248,29 @@ namespace WebSocketSharp.Server /// and . /// /// - /// An instance initialized by this constructor listens for the incoming requests on + /// The new instance listens for incoming requests on /// and . /// /// - /// 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. /// /// - /// A that indicates providing a secure connection or not. - /// (true indicates providing a secure connection.) + /// A : true if the new instance provides + /// secure connections; otherwise, false. /// /// /// 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, bool secure) {