# 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
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| common.rb | File | 18.06 KB | 0644 |
|
| file.rb | File | 2.02 KB | 0644 |
|
| ftp.rb | File | 7.02 KB | 0644 |
|
| generic.rb | File | 36.26 KB | 0644 |
|
| http.rb | File | 2.33 KB | 0644 |
|
| https.rb | File | 553 B | 0644 |
|
| ldap.rb | File | 5.78 KB | 0644 |
|
| ldaps.rb | File | 506 B | 0644 |
|
| mailto.rb | File | 7.82 KB | 0644 |
|
| rfc2396_parser.rb | File | 16.91 KB | 0644 |
|
| rfc3986_parser.rb | File | 5.78 KB | 0644 |
|
| version.rb | File | 150 B | 0644 |
|
| ws.rb | File | 2.24 KB | 0644 |
|
| wss.rb | File | 526 B | 0644 |
|