The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package URI::sftp;

our $VERSION = '0.01';

use strict;
use warnings;

use base qw(URI::_server URI::_userpass);

sub default_port { 22 }

sub path { shift->path_query(@_) }  # XXX


1;

__END__

=head1 NAME

URI::sftp - adds support for SFTP uris to URI package

=head1 SYNOPSIS

  use URI;
  my $uri = URI->new('sftp://me@myhost:29/home/me/foo/bar');

=head1 DESCRIPTION

After this module is installed, the URI package provides the same set
of methods for SFTP uris as it does for FTP ones (i.e, host, port,
user, password, etc.).

=head1 AUTHOR

Salvador FandiE<ntilde>o <sfandino@yahoo.com>

=head1 COPYRIGHT

All rights reserved.  This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.

=cut