summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/URI/ldaps.pm
blob: cbf901b11ca13564bbadaced00d70c546cb09ac1 (plain)
1
2
3
4
5
6
7
8
9
package URI::ldaps;
require URI::ldap;
@ISA=qw(URI::ldap);

sub default_port { 636 }

sub secure { 1 }

1;