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

NAME

Net::SFTP::Server::FS - SFTP server that uses the file system for storage

SYNOPSIS

  use Net::SFTP::Server::FS;

  my $server = Net::SFTP::Server::FS->new(timeout => 15);
  $server->run;

DESCRIPTION

This module implements an standard SFTP server that uses the file system for storage.

All the operations described on the protocol draft version 3 are supported.

Also, this module serves as an example of how to develop an SFTP server on top of Net::SFTP::Server, just read its source code!

BUGS AND SUPPORT

This is an early release that may contain lots of bugs... report them, please!

SEE ALSO

Net::SFTP::Server and the companion script sftp-server-fs-perl(8).

COPYRIGHT AND LICENSE

Copyright (C) 2009 by Salvador Fandiño (sfandino@yahoo.com)

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.