The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 05
META.json 66
META.yml 22
README 22
examples/destination.pl 11
examples/fragment-2x8.pl 11
examples/fragment-8x1024.pl 11
examples/fragment-NxM.pl 11
examples/hopbyhop.pl 11
examples/routing.pl 11
lib/Net/Frame/Layer/IPv6/Destination.pm 33
lib/Net/Frame/Layer/IPv6/Fragment.pm 33
lib/Net/Frame/Layer/IPv6/HopByHop.pm 33
lib/Net/Frame/Layer/IPv6/Option.pm 33
lib/Net/Frame/Layer/IPv6/Routing.pm 33
lib/Net/Frame/Layer/IPv6.pm 44
16 files changed (This is a version diff) 3540
@@ -1,5 +1,10 @@
 Revision history for Perl extension Net::Frame::Layer::IPv6.
 
+1.06 Wed Apr  9 09:50:52 CEST 2014
+   - bugfix: https://rt.cpan.org/Ticket/Display.html?id=93409
+   - bugfix: https://rt.cpan.org/Ticket/Display.html?id=93408
+   - update: copyright notice
+
 1.05 Wed Nov 14 21:47:44 CET 2012
    - bugfix: on length calculation for IPv6::Option
    - NEW: IPv6 HopByHop and Destination options extension header and Option
@@ -4,7 +4,7 @@
       "GomoR <gomor-cpan_at_gomor.org>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150",
+   "generated_by" : "ExtUtils::MakeMaker version 6.94, CPAN::Meta::Converter version 2.132510",
    "license" : [
       "artistic_1"
    ],
@@ -22,22 +22,22 @@
    "prereqs" : {
       "build" : {
          "requires" : {
-            "ExtUtils::MakeMaker" : 0
+            "ExtUtils::MakeMaker" : "0"
          }
       },
       "configure" : {
          "requires" : {
-            "ExtUtils::MakeMaker" : 0
+            "ExtUtils::MakeMaker" : "0"
          }
       },
       "runtime" : {
          "requires" : {
-            "Bit::Vector" : 0,
-            "Net::Frame" : 0,
+            "Bit::Vector" : "0",
+            "Net::Frame" : "0",
             "perl" : "5.006001"
          }
       }
    },
    "release_status" : "stable",
-   "version" : "1.05"
+   "version" : "1.06"
 }
@@ -7,7 +7,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150'
+generated_by: 'ExtUtils::MakeMaker version 6.94, CPAN::Meta::Converter version 2.132510'
 license: artistic
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -21,4 +21,4 @@ requires:
   Bit::Vector: 0
   Net::Frame: 0
   perl: 5.006001
-version: 1.05
+version: 1.06
@@ -20,12 +20,12 @@ This module requires these other modules and libraries:
 GETTING HELP
 
 A mailing list is available for all questions concerning Net::Frame::*.
-http://lists.gomor.org/mailman/listinfo/netframe
+https://www.secure-side.com/lists/mailman/listinfo/netframe
 
 COPYRIGHT AND LICENSE
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.
 
-Copyright (c) 2006-2012, Patrice <GomoR> Auffret
+Copyright (c) 2006-2014, Patrice <GomoR> Auffret
 
@@ -1,4 +1,4 @@
-#!/usr/bin/perl;
+#!/usr/bin/perl
 use strict;
 use warnings;
 
@@ -1,4 +1,4 @@
-#!/usr/bin/perl;
+#!/usr/bin/perl
 
 # Not all hosts respond to IPv6 fragments
 # Examples that do:
@@ -1,4 +1,4 @@
-#!/usr/bin/perl;
+#!/usr/bin/perl
 
 # Not all hosts respond to IPv6 fragments
 # Examples that do:
@@ -1,4 +1,4 @@
-#!/usr/bin/perl;
+#!/usr/bin/perl
 
 # Not all hosts respond to IPv6 fragments
 # Examples that do:
@@ -1,4 +1,4 @@
-#!/usr/bin/perl;
+#!/usr/bin/perl
 use strict;
 use warnings;
 
@@ -1,4 +1,4 @@
-#!/usr/bin/perl;
+#!/usr/bin/perl
 
 use strict;
 use warnings;
@@ -1,5 +1,5 @@
 #
-# $Id: Destination.pm 40 2012-11-13 19:49:06Z gomor $
+# $Id: Destination.pm 45 2014-04-09 07:51:48Z gomor $
 #
 package Net::Frame::Layer::IPv6::Destination;
 use strict; use warnings;
@@ -222,7 +222,7 @@ Object constructor. You can pass attributes that will overwrite default ones. Se
 
 =back
 
-The following are inherited methods. Some of them may be overriden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
+The following are inherited methods. Some of them may be overridden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
 
 =over 4
 
@@ -264,7 +264,7 @@ Michael Vincent
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2012, Michael Vincent
+Copyright (c) 2012-2014, Michael Vincent
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.
@@ -1,5 +1,5 @@
 #
-# $Id: Fragment.pm 34 2012-10-19 01:09:13Z gomor $
+# $Id: Fragment.pm 45 2014-04-09 07:51:48Z gomor $
 #
 package Net::Frame::Layer::IPv6::Fragment;
 use strict; use warnings;
@@ -195,7 +195,7 @@ Object constructor. You can pass attributes that will overwrite default ones. Se
 
 =back
 
-The following are inherited methods. Some of them may be overriden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
+The following are inherited methods. Some of them may be overridden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
 
 =over 4
 
@@ -235,7 +235,7 @@ Michael Vincent
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2012, Michael Vincent
+Copyright (c) 2012-2014, Michael Vincent
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.
@@ -1,5 +1,5 @@
 #
-# $Id: HopByHop.pm 40 2012-11-13 19:49:06Z gomor $
+# $Id: HopByHop.pm 45 2014-04-09 07:51:48Z gomor $
 #
 package Net::Frame::Layer::IPv6::HopByHop;
 use strict; use warnings;
@@ -222,7 +222,7 @@ Object constructor. You can pass attributes that will overwrite default ones. Se
 
 =back
 
-The following are inherited methods. Some of them may be overriden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
+The following are inherited methods. Some of them may be overridden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
 
 =over 4
 
@@ -264,7 +264,7 @@ Michael Vincent
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2012, Michael Vincent
+Copyright (c) 2012-2014, Michael Vincent
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.
@@ -1,5 +1,5 @@
 #
-# $Id: Option.pm 42 2012-11-14 20:48:29Z gomor $
+# $Id: Option.pm 45 2014-04-09 07:51:48Z gomor $
 #
 package Net::Frame::Layer::IPv6::Option;
 use strict;
@@ -181,7 +181,7 @@ Object constructor. You can pass attributes that will overwrite default ones. Se
 
 =back
 
-The following are inherited methods. Some of them may be overriden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
+The following are inherited methods. Some of them may be overridden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
 
 =over 4
 
@@ -221,7 +221,7 @@ Patrice E<lt>GomoRE<gt> Auffret
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2006-2012, Patrice E<lt>GomoRE<gt> Auffret
+Copyright (c) 2006-2014, Patrice E<lt>GomoRE<gt> Auffret
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.
@@ -1,5 +1,5 @@
 #
-# $Id: Routing.pm 34 2012-10-19 01:09:13Z gomor $
+# $Id: Routing.pm 45 2014-04-09 07:51:48Z gomor $
 #
 package Net::Frame::Layer::IPv6::Routing;
 use strict; use warnings;
@@ -259,7 +259,7 @@ Disable (0) or enable (1) automatic computing of B<segmentsLeft> by the B<comput
 
 =back
 
-The following are inherited methods. Some of them may be overriden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
+The following are inherited methods. Some of them may be overridden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
 
 =over 4
 
@@ -299,7 +299,7 @@ Michael Vincent
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2012, Michael Vincent
+Copyright (c) 2012-2014, Michael Vincent
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.
@@ -1,11 +1,11 @@
 #
-# $Id: IPv6.pm 34 2012-10-19 01:09:13Z gomor $
+# $Id: IPv6.pm 45 2014-04-09 07:51:48Z gomor $
 #
 package Net::Frame::Layer::IPv6;
 use strict;
 use warnings;
 
-our $VERSION = '1.05';
+our $VERSION = '1.06';
 
 use Net::Frame::Layer qw(:consts :subs);
 require Exporter;
@@ -424,7 +424,7 @@ In order to compute lengths attributes within IPv6 header, you need to pass via
 
 =back
 
-The following are inherited methods. Some of them may be overriden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
+The following are inherited methods. Some of them may be overridden in this layer, and some others may not be meaningful in this layer. See B<Net::Frame::Layer> for more information.
 
 =over 4
 
@@ -574,7 +574,7 @@ Patrice E<lt>GomoRE<gt> Auffret
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2006-2012, Patrice E<lt>GomoRE<gt> Auffret
+Copyright (c) 2006-2014, Patrice E<lt>GomoRE<gt> Auffret
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.