The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use Net::FCP;

my $fcp = new Net::FCP;

my $nodehello = $fcp->client_hello;

print "your node:\n";
print "protocol version:  $nodehello->{protocol}\n";
print "node description:  $nodehello->{node}\n";
print "maximum file size: $nodehello->{max_file_size}\n";