Mojo::TFTPd - Trivial File Transfer Protocol daemon
0.01
use Mojo::TFTPd;
my $tftpd = Mojo::TFTPd->new;
$tftpd->on(error => sub {
warn "TFTPd: $_[1]\n";
});
$tftpd->on(rrq => sub {
my($tftpd, $c) = @_;
open my $FH, '<', $c->file;
$c->filehandle($FH);
});
$tftpd->on(wrq => sub {
my($tftpd, $c) = @_;
open my $FH, '>', '/dev/null';
$c->filehandle($FH);
});
$self->on(finish => sub {
my($tftpd, $c, $error) = @_;
warn "Connection: $error\n" if $error;
});
$tftpd->start;
$tftpd->ioloop->start unless $tftpd->ioloop->is_running;
This module implement a server for the Trivial File Transfer Protocol.
From Wikipedia:
Trivial File Transfer Protocol (TFTP) is a file transfer protocol notable
for its simplicity. It is generally used for automated transfer of
configuration or boot files between machines in a local environment.
The connection ($c) which is referred to in this document is an instance of Mojo::TFTPd::Connection.
$self->on(error => sub {
my($self, $str) = @_;
});
This event is emitted when something goes wrong: Fail to "listen" to socket, read from socket or other internal errors.
$self->on(finish => sub {
my($self, $c, $error) = @_;
});
This event is emitted when the client finish, either successfully or due to an error. $error
will be an empty string on success.
$self->on(rrq => sub {
my($self, $c) = @_;
});
This event is emitted when a new read request arrives from a client. The callback should set "filehandle" in Mojo::TFTPd::Connection or the connection will be dropped.
$self->on(wrq => sub {
my($self, $c) = @_;
});
This event is emitted when a new write request arrives from a client. The callback should set "filehandle" in Mojo::TFTPd::Connection or the connection will be dropped.
Holds an instance of Mojo::IOLoop.
$str = $self->server;
$self->server("127.0.0.1:69");
$self->server("tftp://*:69"); # any interface
The bind address for this server.
How many concurrent connections this server can handle. Default to 1000.
How many times the server should try to send ACK or DATA to the client before dropping the connection.
How long a connection can stay idle before
Starts listening to the address and port set in "Listen". The "error" event wille be emitted if the server fail to start.
Jan Henning Thorsen - [email protected]