Server IP : 66.29.132.122 / Your IP : 3.140.188.250 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/opt/alt/ruby31/share/ruby/uri/ |
Upload File : |
# frozen_string_literal: false # = uri/wss.rb # # Author:: Matt Muller <mamuller@amazon.com> # License:: You can redistribute it and/or modify it under the same term as Ruby. # # See URI for general documentation # require_relative 'ws' module URI # The default port for WSS URIs is 443, and the scheme is 'wss:' rather # than 'ws:'. Other than that, WSS URIs are identical to WS URIs; # see URI::WS. class WSS < WS # A Default port of 443 for URI::WSS DEFAULT_PORT = 443 end register_scheme 'WSS', WSS end