File: list_dho.pl

package info (click to toggle)
libnet-dhcp-perl 0.690%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 280 kB
  • sloc: perl: 1,845; sh: 48; makefile: 8
file content (14 lines) | stat: -rwxr-xr-x 206 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;

use Net::DHCP::Constants qw( %REV_DHO_CODES );

for my $key (sort {$a <=> $b} keys %REV_DHO_CODES) {
	printf "  (%03d) %s\n", $key, $REV_DHO_CODES{$key};
}

1;