2002-01-10 03:00:51 -05:00
|
|
|
#
|
2004-03-24 06:53:31 -05:00
|
|
|
# = uri/https.rb
|
2002-01-10 03:00:51 -05:00
|
|
|
#
|
2004-03-24 06:53:31 -05: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 03:00:51 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
require 'uri/http'
|
|
|
|
|
|
|
|
module URI
|
2005-08-24 01:08:00 -04: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 03:00:51 -05:00
|
|
|
class HTTPS < HTTP
|
|
|
|
DEFAULT_PORT = 443
|
|
|
|
end
|
|
|
|
@@schemes['HTTPS'] = HTTPS
|
2004-03-24 06:53:31 -05:00
|
|
|
end
|