File Coverage

blib/lib/RPC/PlClient/Comm.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 0 1 0.0
total 6 7 85.7


line stmt bran cond sub pod time code
1             # -*- perl -*-
2             #
3             #
4             # PlRPC - Perl RPC, package for writing simple, RPC like clients and
5             # servers
6             #
7             #
8             # Copyright (c) 1997,1998 Jochen Wiedmann
9             #
10             # You may distribute under the terms of either the GNU General Public
11             # License or the Artistic License, as specified in the Perl README file.
12             #
13             # Author: Jochen Wiedmann
14             # Email: jochen.wiedmann at freenet.de
15             #
16              
17             require 5.004;
18 4     4   24 use strict;
  4         9  
  4         373  
19              
20             require RPC::PlServer::Comm;
21              
22              
23             package RPC::PlClient::Comm;
24              
25              
26             $RPC::PlClient::Comm::VERSION = '0.1002';
27             @RPC::PlClient::Comm::ISA = qw(RPC::PlServer::Comm);
28              
29              
30 42     42 0 86 sub getMaxMessage() { return 0; }
31              
32              
33             1;