2004-03-24 11:53:31 +00:00
|
|
|
# = uri/https.rb
|
2002-01-10 08:00:51 +00:00
|
|
|
#
|
2004-03-24 11:53:31 +00:00
|
|
|
# Author:: Akira Yamada <akira@ruby-lang.org>
|
|
|
|
# License:: You can redistribute it and/or modify it under the same term as Ruby.
|
|
|
|
# Revision:: $Id$
|
2002-01-10 08:00:51 +00:00
|
|
|
#
|
2011-05-13 20:03:21 +00:00
|
|
|
# See URI for general documentation
|
|
|
|
#
|
2002-01-10 08:00:51 +00:00
|
|
|
|
|
|
|
require 'uri/http'
|
|
|
|
|
|
|
|
module URI
|
2005-08-24 05:08:00 +00:00
|
|
|
|
|
|
|
# The default port for HTTPS URIs is 443, and the scheme is 'https:' rather
|
|
|
|
# than 'http:'. Other than that, HTTPS URIs are identical to HTTP URIs;
|
|
|
|
# see URI::HTTP.
|
2002-01-10 08:00:51 +00:00
|
|
|
class HTTPS < HTTP
|
2011-05-12 20:39:11 +00:00
|
|
|
# A Default port of 443 for URI::HTTPS
|
2002-01-10 08:00:51 +00:00
|
|
|
DEFAULT_PORT = 443
|
|
|
|
end
|
|
|
|
@@schemes['HTTPS'] = HTTPS
|
2004-03-24 11:53:31 +00:00
|
|
|
end
|