line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
## Domain Registry Interface, Null Logging operations for Net::DRI |
2
|
|
|
|
|
|
|
## |
3
|
|
|
|
|
|
|
## Copyright (c) 2009 Patrick Mevzek . All rights reserved. |
4
|
|
|
|
|
|
|
## |
5
|
|
|
|
|
|
|
## This file is part of Net::DRI |
6
|
|
|
|
|
|
|
## |
7
|
|
|
|
|
|
|
## Net::DRI is free software; you can redistribute it and/or modify |
8
|
|
|
|
|
|
|
## it under the terms of the GNU General Public License as published by |
9
|
|
|
|
|
|
|
## the Free Software Foundation; either version 2 of the License, or |
10
|
|
|
|
|
|
|
## (at your option) any later version. |
11
|
|
|
|
|
|
|
## |
12
|
|
|
|
|
|
|
## See the LICENSE file that comes with this distribution for more details. |
13
|
|
|
|
|
|
|
#################################################################################################### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
package Net::DRI::Logging::Null; |
16
|
|
|
|
|
|
|
|
17
|
70
|
|
|
70
|
|
35161
|
use strict; |
|
70
|
|
|
|
|
86
|
|
|
70
|
|
|
|
|
1745
|
|
18
|
70
|
|
|
70
|
|
218
|
use warnings; |
|
70
|
|
|
|
|
66
|
|
|
70
|
|
|
|
|
1672
|
|
19
|
|
|
|
|
|
|
|
20
|
70
|
|
|
70
|
|
206
|
use base qw/Net::DRI::Logging/; |
|
70
|
|
|
|
|
68
|
|
|
70
|
|
|
|
|
29560
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
#################################################################################################### |
23
|
|
|
|
|
|
|
|
24
|
0
|
|
|
0
|
1
|
0
|
sub name { return 'null'; } |
25
|
71
|
|
|
71
|
1
|
874
|
sub setup_channel { return; } |
26
|
538
|
|
|
538
|
1
|
4239
|
sub output { return; } |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
#################################################################################################### |
29
|
|
|
|
|
|
|
1; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
__END__ |