Sha256: edf8695349d2fe199329edc300f12bcbd701a2bb12a5b6a0ca2204921c1b1b1a

Contents?: true

Size: 526 Bytes

Versions: 3

Compression:

Stored size: 526 Bytes

Contents

# 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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
uri-0.10.3 lib/uri/wss.rb
uri-0.10.2 lib/uri/wss.rb
uri-0.10.1 lib/uri/wss.rb