line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
############################################################################## |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# This library is free software; you can redistribute it and/or |
4
|
|
|
|
|
|
|
# modify it under the terms of the GNU Library General Public |
5
|
|
|
|
|
|
|
# License as published by the Free Software Foundation; either |
6
|
|
|
|
|
|
|
# version 2 of the License, or (at your option) any later version. |
7
|
|
|
|
|
|
|
# |
8
|
|
|
|
|
|
|
# This library is distributed in the hope that it will be useful, |
9
|
|
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
10
|
|
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
11
|
|
|
|
|
|
|
# Library General Public License for more details. |
12
|
|
|
|
|
|
|
# |
13
|
|
|
|
|
|
|
# You should have received a copy of the GNU Library General Public |
14
|
|
|
|
|
|
|
# License along with this library; if not, write to the |
15
|
|
|
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
16
|
|
|
|
|
|
|
# Boston, MA 02111-1307, USA. |
17
|
|
|
|
|
|
|
# |
18
|
|
|
|
|
|
|
# Copyright (C) 1998-2004 Jabber Software Foundation http://jabber.org/ |
19
|
|
|
|
|
|
|
# |
20
|
|
|
|
|
|
|
############################################################################## |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
package Net::Jabber::Debug; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Net::Jabber::Debug - Jabber Debug Library |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 DESCRIPTION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Net::Jabber::Debug inherits all of its methods from Net::XMPP::Debug. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 AUTHOR |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Ryan Eatmon |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 COPYRIGHT |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
This module is free software; you can redistribute it and/or modify |
39
|
|
|
|
|
|
|
it under the same terms as Perl itself. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=cut |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
require 5.003; |
44
|
49
|
|
|
49
|
|
295
|
use strict; |
|
49
|
|
|
|
|
141
|
|
|
49
|
|
|
|
|
2307
|
|
45
|
49
|
|
|
49
|
|
292
|
use FileHandle; |
|
49
|
|
|
|
|
90
|
|
|
49
|
|
|
|
|
508
|
|
46
|
49
|
|
|
49
|
|
23107
|
use Carp; |
|
49
|
|
|
|
|
99
|
|
|
49
|
|
|
|
|
3866
|
|
47
|
49
|
|
|
49
|
|
381
|
use Net::XMPP::Debug; |
|
49
|
|
|
|
|
86
|
|
|
49
|
|
|
|
|
1462
|
|
48
|
49
|
|
|
49
|
|
260
|
use base qw( Net::XMPP::Debug ); |
|
49
|
|
|
|
|
81
|
|
|
49
|
|
|
|
|
4165
|
|
49
|
49
|
|
|
49
|
|
305
|
use vars qw( $VERSION ); |
|
49
|
|
|
|
|
209
|
|
|
49
|
|
|
|
|
2677
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
$VERSION = "2.0"; |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
1; |