Files
server/usr/share/perl5/URI/ldaps.pm
2026-01-07 20:52:11 +01:00

15 lines
144 B
Perl

package URI::ldaps;
use strict;
use warnings;
our $VERSION = '5.27';
use parent 'URI::ldap';
sub default_port { 636 }
sub secure { 1 }
1;