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

« back to all changes in this revision

Viewing changes to lib/NetPacket/Ethernet.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::Ethernet - Decode and encode ethernet packets.
3
 
#
4
 
# Comments/suggestions to tpot@samba.org
5
 
#
6
 
# $Id: Ethernet.pm,v 1.12 2001/07/29 23:45:00 tpot Exp $
7
 
#
8
3
 
9
4
package NetPacket::Ethernet;
10
5
 
11
 
#
12
 
# Copyright (c) 2001 Tim Potter.
13
 
#
14
 
# This package is free software and is provided "as is" without express 
15
 
# or implied warranty.  It may be used, redistributed and/or modified 
16
 
# under the terms of the Perl Artistic License (see
17
 
# http://www.perl.com/perl/misc/Artistic.html)
18
 
#
19
 
# Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
20
 
# the  participants in the CRC for Advanced Computational Systems
21
 
# ('ACSys').
22
 
#
23
 
# ACSys makes this software and all associated data and documentation
24
 
# ('Software') available free of charge.  You may make copies of the 
25
 
# Software but you must include all of this notice on any copy.
26
 
#
27
 
# The Software was developed for research purposes and ACSys does not
28
 
# warrant that it is error free or fit for any purpose.  ACSys
29
 
# disclaims any liability for all claims, expenses, losses, damages
30
 
# and costs any user may incur as a result of using, copying or
31
 
# modifying the Software.
32
 
#
33
 
 
34
6
use strict;
35
7
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
36
8
 
37
 
our $VERSION = '0.41.1';
 
9
our $VERSION = '0.42.0';
38
10
 
39
11
BEGIN {
40
12
    @ISA = qw(Exporter NetPacket);
287
259
 
288
260
=head1 COPYRIGHT
289
261
 
290
 
  Copyright (c) 2001 Tim Potter.
291
 
 
292
 
  This package is free software and is provided "as is" without express 
293
 
  or implied warranty.  It may be used, redistributed and/or modified 
294
 
  under the terms of the Perl Artistic License (see
295
 
  http://www.perl.com/perl/misc/Artistic.html)
296
 
 
297
 
  Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
298
 
  the participants in the CRC for Advanced Computational Systems
299
 
  ('ACSys').
300
 
 
301
 
  ACSys makes this software and all associated data and documentation
302
 
  ('Software') available free of charge.  You may make copies of the 
303
 
  Software but you must include all of this notice on any copy.
304
 
 
305
 
  The Software was developed for research purposes and ACSys does not
306
 
  warrant that it is error free or fit for any purpose.  ACSys
307
 
  disclaims any liability for all claims, expenses, losses, damages
308
 
  and costs any user may incur as a result of using, copying or
309
 
  modifying the Software.
 
262
This is free software; you can redistribute it and/or modify it 
 
263
under the same terms as the Perl 5 programming language system itself.
 
264
 
 
265
Copyright (c) 2001 Tim Potter and Stephanie Wehner.
 
266
 
 
267
Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of 
 
268
the participants in the CRC for Advanced Computational Systems
 
269
('ACSys').
 
270
 
310
271
 
311
272
=head1 AUTHOR
312
273