Server : Apache System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 User : vapecompany ( 2719) PHP Version : 7.4.33 Disable Function : NONE Directory : /opt/alt/ruby30/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 @@schemes['WSS'] = WSS end