ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-FCP/eg/simple
Revision: 1.2
Committed: Sun Sep 7 23:21:12 2003 UTC (23 years ago) by root
Branch: MAIN
Changes since 1.1: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #!/usr/bin/perl
2    
3     use Net::FCP;
4    
5 root 1.2 my $fcp = new Net::FCP;
6 root 1.1
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