ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-FCP/eg/simple
Revision: 1.4
Committed: Mon Sep 15 00:05:32 2003 UTC (23 years ago) by root
Branch: MAIN
CVS Tags: rel-1_1, rel-1_0, rel-1_2, HEAD
Changes since 1.3: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/usr/bin/perl
2
3 use Net::FCP;
4
5 my $fcp = new Net::FCP;
6
7 my $nodehello = $fcp->client_hello;
8
9 print "your node:\n";
10 print "protocol version: $nodehello->{protocol}\n";
11 print "node description: $nodehello->{node}\n";
12 print "maximum file size: $nodehello->{max_file_size}\n";
13
14