File: opt.pm

package info (click to toggle)
libnet-rawip-perl 0.25-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 636 kB
  • sloc: perl: 1,290; ansic: 745; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
package Net::RawIP::opt;
use strict;
use warnings;
our $VERSION = '0.24';
use Class::Struct qw(struct);
my @opt = qw(type len data);
struct ( 'Net::RawIP::opt' => [map { $_ => '@' } @opt ] );

1;