~ubuntu-branches/ubuntu/saucy/libnetpacket-perl/saucy

« back to all changes in this revision

Viewing changes to lib/NetPacket/IGMP.pm

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2010-03-30 22:13:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100330221326-1p8y7rlzou6vmjy2
Tags: 0.42.0-1
* New upstream release.
* debian/watch: update to ignore development releases.
* Convert to source format 3.0 (quilt).
* Minimize debian/rules.
* Set Standards-Version to 3.8.4, remove version from perl build dependency..
* Add /me to Uploaders.
* Bump debhelper dependency to 7.0.17 (M::B::C). Add perl (>= 5.10) as an
  alternative to libmodule-build-perl.
* debian/copyright: use DEP5 formatting and clarify license.
* Add a patch to fix minor spelling mistake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
2
# NetPacket::IGMP - Decode and encode IGMP (Internet Group Management
3
3
# Protocol) packets.
4
 
#
5
 
# Comments/suggestions to tpot@samba.org
6
 
#
7
 
# $Id: IGMP.pm,v 1.9 2001/07/29 23:45:00 tpot Exp $
8
 
#
9
4
 
10
5
package NetPacket::IGMP;
11
6
 
12
 
#
13
 
# Copyright (c) 2001 Tim Potter.
14
 
#
15
 
# This package is free software and is provided "as is" without express 
16
 
# or implied warranty.  It may be used, redistributed and/or modified 
17
 
# under the terms of the Perl Artistic License (see
18
 
# http://www.perl.com/perl/misc/Artistic.html)
19
 
#
20
 
# Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
21
 
# the participants in the CRC for Advanced Computational Systems
22
 
# ('ACSys').
23
 
#
24
 
# ACSys makes this software and all associated data and documentation
25
 
# ('Software') available free of charge.  You may make copies of the 
26
 
# Software but you must include all of this notice on any copy.
27
 
#
28
 
# The Software was developed for research purposes and ACSys does not
29
 
# warrant that it is error free or fit for any purpose.  ACSys
30
 
# disclaims any liability for all claims, expenses, losses, damages
31
 
# and costs any user may incur as a result of using, copying or
32
 
# modifying the Software.
33
 
#
34
7
 
35
8
use strict;
36
9
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
37
10
 
38
 
our $VERSION = '0.41.1';
 
11
our $VERSION = '0.42.0';
39
12
 
40
13
BEGIN {
41
14
    @ISA = qw(Exporter NetPacket);
335
308
 
336
309
=head1 COPYRIGHT
337
310
 
338
 
  Copyright (c) 2001 Tim Potter.
339
 
 
340
 
  This package is free software and is provided "as is" without express 
341
 
  or implied warranty.  It may be used, redistributed and/or modified 
342
 
  under the terms of the Perl Artistic License (see
343
 
  http://www.perl.com/perl/misc/Artistic.html)
344
 
 
345
 
  Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
346
 
  the participants in the CRC for Advanced Computational Systems
347
 
  ('ACSys').
348
 
 
349
 
  ACSys makes this software and all associated data and documentation
350
 
  ('Software') available free of charge.  You may make copies of the 
351
 
  Software but you must include all of this notice on any copy.
352
 
 
353
 
  The Software was developed for research purposes and ACSys does not
354
 
  warrant that it is error free or fit for any purpose.  ACSys
355
 
  disclaims any liability for all claims, expenses, losses, damages
356
 
  and costs any user may incur as a result of using, copying or
357
 
  modifying the Software.
 
311
This is free software; you can redistribute it and/or modify it 
 
312
under the same terms as the Perl 5 programming language system itself.
 
313
 
 
314
Copyright (c) 2001 Tim Potter.
 
315
 
 
316
Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
 
317
the participants in the CRC for Advanced Computational Systems
 
318
('ACSys').
 
319
 
358
320
 
359
321
=head1 AUTHOR
360
322