repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Fix up Rubinius specific library specs.
[rbx.git]
/
lib
/
uri
/
ldaps.rb
blob
6da333150f2da9748e324e4840ba04876e964d04
1
require 'uri/ldap'
2
3
module URI
4
5
# The default port for LDAPS URIs is 636, and the scheme is 'ldaps:' rather
6
# than 'ldap:'. Other than that, LDAPS URIs are identical to LDAP URIs;
7
# see URI::LDAP.
8
class LDAPS < LDAP
9
DEFAULT_PORT = 636
10
end
11
@@schemes['LDAPS'] = LDAPS
12
end