|
FUSE::Client - Perl-FUSE client |
FUSE::Client - Perl-FUSE client
use FUSE::Client;
$c = FUSE::Client->new({
Port=>35008,
Quiet=>1,
});
$c->connect();
$c->send("COMMAND","parameter");
$c->disconnect();
The FUSE::Client module will create a TCP FUSE client to test sending messages to a FUSE server.
The external interface to FUSE::Client is:
Quiet = 0|1
Whether to be quiet. Default is to report all events to STDOUT (not 'Quiet').
Port = n
The port for the client to connect to. Default is 1024.
Cal Henderson, <cal@iamcal.com>
|
FUSE::Client - Perl-FUSE client |