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

# User Rev Content
1 root 1.1 #!/usr/bin/perl
2    
3 root 1.4 use Net::FCP;
4 root 1.1
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