File: iphdr.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 (10 lines) | stat: -rw-r--r-- 263 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
package Net::RawIP::iphdr;
use strict;
use warnings;
our $VERSION = '0.24';
use Class::Struct qw(struct);
our @iphdr
    = qw(version ihl tos tot_len id frag_off ttl protocol check saddr daddr);
struct ( 'Net::RawIP::iphdr' => [ map { $_ => '$' } @iphdr ] );

1;