# RawSock.pm # # Copyright (c) 2001 Stephane Aubert. All rights reserved. This program is # free software; you can redistribute it and/or modify it under the same # terms as Perl itself. package Net::RawSock; use strict; require Exporter; require DynaLoader; use vars qw($VERSION @ISA); use vars qw(@ISA);@ISA = qw(Exporter DynaLoader); use vars qw(@EXPORT);@EXPORT = qw(); use vars qw($VERSION);$VERSION = '1.0'; bootstrap Net::RawSock $VERSION; 1; __END__ # Below is the stub of documentation for RawSock.pm C - module to send network raw IP datagrams. =head1 SYNOPSIS =head1 DESCRIPTION C provides a base function to send raw IP datagrams from Perl. The raw IP datagam is packed into a buffer and written on the network layer with the write_ip() function. =head1 COPYRIGHT Copyright (c) 2001 Stephane Aubert. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 AUTHOR Stephane Aubert EStephane.Aubert@hsc-labs.comE =cut