| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
1
|
|
|
1
|
|
444
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
28
|
|
|
2
|
1
|
|
|
1
|
|
3
|
use warnings FATAL => 'all'; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
70
|
|
|
3
|
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
# ABSTRACT: formatting MAC addresses in Cisco notation |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
package NetObj::MacAddress::Formatter::Dots; |
|
7
|
|
|
|
|
|
|
$NetObj::MacAddress::Formatter::Dots::VERSION = '1.0'; |
|
8
|
|
|
|
|
|
|
sub format { |
|
9
|
3
|
|
|
3
|
1
|
2
|
my ($mac) = @_; |
|
10
|
3
|
|
|
|
|
19
|
return join('.', unpack('H4' x 3, $_[0]->binary())); |
|
11
|
|
|
|
|
|
|
} |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
__END__ |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=pod |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=encoding UTF-8 |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
NetObj::MacAddress::Formatter::Dots - formatting MAC addresses in Cisco notation |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 VERSION |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
version 1.0 |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
use NetObj::MacAddress::Formatter::Dots; |
|
32
|
|
|
|
|
|
|
my $mac = NetObj::MacAddress->new('080020abcdef'); |
|
33
|
|
|
|
|
|
|
$mac->to_string('dots'); # '0800.20ab.cdef' |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Helper module to format a MAC address as a string in hex dot delimited format. |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 METHODS |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 format |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Method to do the actual formatting. Used by C<NetObj::MacAddress>. |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 AUTHOR |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Elmar S. Heeb <elmar@heebs.ch> |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
This software is Copyright (c) 2015 by Elmar S. Heeb. |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
This is free software, licensed under: |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
The GNU General Public License, Version 3, June 2007 |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=cut |