diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs index 672c09cd..39ef7b3f 100644 --- a/websocket-sharp/Server/HttpServer.cs +++ b/websocket-sharp/Server/HttpServer.cs @@ -117,17 +117,21 @@ namespace WebSocketSharp.Server /// /// Initializes a new instance of the class with - /// the specified HTTP URL. + /// the specified . /// /// /// - /// An instance initialized by this constructor listens for the incoming requests on - /// the host name and port in . + /// The new instance listens for incoming requests on the IP address of the + /// host of and the port of . /// /// - /// If doesn't include a port, either port 80 or 443 is used on - /// which to listen. It's determined by the scheme (http or https) in . - /// (Port 80 if the scheme is http.) + /// Either port 80 or 443 is used if includes + /// no port. Port 443 is used if the scheme of + /// is https; otherwise, port 80 is used. + /// + /// + /// The new instance provides secure connections if the scheme of + /// is https. /// /// ///