File: ssh.pm

package info (click to toggle)
liburi-perl 5.34-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 984 kB
  • sloc: perl: 4,001; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 175 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package URI::ssh;

use strict;
use warnings;

our $VERSION = '5.34';

use parent 'URI::_login';

# ssh://[USER@]HOST[:PORT]/SRC

sub default_port { 22 }

sub secure { 1 }

1;