POE::Component:: TFTPd
POE::Component::TFTPd is a tftp-server, implemented through POE.
SYNOPSIS
POE::Session->create(
inline_states => {
_start => sub {
POE::Component::TFTPd->create;
$_[KERNEL]->post($alias => 'start');
},
tftpd_init => sub {
my($client, $fh) = ($_[ARG0], undef);
open($fh, "", $client->filename) if($client->wrq);
$client->{'fh'} = $fh;
},
tftpd_done => sub ... |
May 17th 2011 |
Freeware |
|
20k |