• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

恥ずかしい勘違いから生まれた、DHCP6の不要かつ部分的な実装


Commit MetaInfo

Revisión6ffe1bd63bbde57e9d3a292081f28cc5cc68bacc (tree)
Tiempo2021-08-12 20:02:11
Autordyknon <dyknon@user...>
Commiterdyknon

Log Message

numeric VERSION

Cambiar Resumen

Diferencia incremental

--- a/Net/DHCP6/AbstractOption/DUID.pm
+++ b/Net/DHCP6/AbstractOption/DUID.pm
@@ -8,7 +8,7 @@ use strict;
88 use warnings;
99 use Net::DHCP6::Option;
1010
11-our $VERSION = "0.0.1";
11+our $VERSION = "0.001";
1212 our @ISA = qw/Net::DHCP6::Option/;
1313
1414 sub new {
--- a/Net/DHCP6/AbstractOption/FixedLength.pm
+++ b/Net/DHCP6/AbstractOption/FixedLength.pm
@@ -5,7 +5,7 @@ use strict;
55 use warnings;
66 use Net::DHCP6::Option;
77
8-our $VERSION = "0.0.1";
8+our $VERSION = "0.001";
99 our @ISA = qw/Net::DHCP6::Option/;
1010
1111 sub new {
--- a/Net/DHCP6/AbstractOption/Ipv6AddrList.pm
+++ b/Net/DHCP6/AbstractOption/Ipv6AddrList.pm
@@ -5,7 +5,7 @@ use warnings;
55 use Net::DHCP6::AbstractOption::Vector;
66 use Net::DHCP6::Value::Ipv6Addr;
77
8-our $VERSION = "0.0.1";
8+our $VERSION = "0.001";
99 our @ISA = qw/Net::DHCP6::AbstractOption::Vector/;
1010
1111 use constant len_elem => 16;
--- a/Net/DHCP6/AbstractOption/List.pm
+++ b/Net/DHCP6/AbstractOption/List.pm
@@ -5,7 +5,7 @@ use strict;
55 use warnings;
66 use Net::DHCP6::Option;
77
8-our $VERSION = "0.0.1";
8+our $VERSION = "0.001";
99 our @ISA = qw/Net::DHCP6::Option/;
1010
1111 sub new {
--- a/Net/DHCP6/AbstractOption/Vector.pm
+++ b/Net/DHCP6/AbstractOption/Vector.pm
@@ -5,7 +5,7 @@ use strict;
55 use warnings;
66 use Net::DHCP6::AbstractOption::List;
77
8-our $VERSION = "0.0.1";
8+our $VERSION = "0.001";
99 our @ISA = qw/Net::DHCP6::AbstractOption::List/;
1010
1111 # must overridden
--- a/Net/DHCP6/Exchange.pm
+++ b/Net/DHCP6/Exchange.pm
@@ -19,7 +19,7 @@ use IO::Select;
1919
2020 our @ISA = qw/Exporter/;
2121 our @EXPORT_OK = qw/NEXT LAST/;
22-our $VERSION = "0.0.1";
22+our $VERSION = "0.001";
2323 our $bufsize = 2 ** 16;
2424
2525 sub get_default_local_address {
--- a/Net/DHCP6/Exchange/InfoReq.pm
+++ b/Net/DHCP6/Exchange/InfoReq.pm
@@ -18,7 +18,7 @@ use Net::DHCP6::Parameters qw(
1818 use Net::DHCP6::Message;
1919 use Net::DHCP6::Option qw/ElapsedTime OptionRequest ClientId/;
2020
21-our $VERSION = "0.0.1";
21+our $VERSION = "0.001";
2222 our @ISA = qw/Net::DHCP6::Exchange/;
2323
2424 use constant irt => 1;
--- a/Net/DHCP6/Message.pm
+++ b/Net/DHCP6/Message.pm
@@ -7,7 +7,7 @@ use warnings;
77 use Net::DHCP6::Option;
88 use Net::DHCP6::OptionList;
99
10-our $VERSION = "0.0.1";
10+our $VERSION = "0.001";
1111 our @ISA = qw/Net::DHCP6::OptionList/;
1212
1313 # TODO: should be crypto-safe RNG?
--- a/Net/DHCP6/Option.pm
+++ b/Net/DHCP6/Option.pm
@@ -4,7 +4,7 @@ package Net::DHCP6::Option;
44 use strict;
55 use warnings;
66
7-our $VERSION = "0.0.1";
7+our $VERSION = "0.001";
88 our %OptionPkgs;
99
1010 # should overridden
--- a/Net/DHCP6/Option/ClientId.pm
+++ b/Net/DHCP6/Option/ClientId.pm
@@ -6,7 +6,7 @@ use warnings;
66 use Net::DHCP6::AbstractOption::DUID;
77 use Net::DHCP6::Parameters qw/DHCP6_OPT_CLIENTID/;
88
9-our $VERSION = "0.0.1";
9+our $VERSION = "0.001";
1010 our @ISA = qw/Net::DHCP6::AbstractOption::DUID/;
1111
1212 use constant code => DHCP6_OPT_CLIENTID;
--- a/Net/DHCP6/Option/DnsServer.pm
+++ b/Net/DHCP6/Option/DnsServer.pm
@@ -6,7 +6,7 @@ use warnings;
66 use Net::DHCP6::AbstractOption::Ipv6AddrList;
77 use Net::DHCP6::Parameters qw/DHCP6_OPT_DNS_SERVERS/;
88
9-our $VERSION = "0.0.1";
9+our $VERSION = "0.001";
1010 our @ISA = qw/Net::DHCP6::AbstractOption::Ipv6AddrList/;
1111
1212 use constant code => DHCP6_OPT_DNS_SERVERS;
--- a/Net/DHCP6/Option/ElapsedTime.pm
+++ b/Net/DHCP6/Option/ElapsedTime.pm
@@ -6,7 +6,7 @@ use warnings;
66 use Net::DHCP6::AbstractOption::FixedLength;
77 use Net::DHCP6::Parameters qw/DHCP6_OPT_ELAPSED_TIME/;
88
9-our $VERSION = "0.0.1";
9+our $VERSION = "0.001";
1010 our @ISA = qw/Net::DHCP6::AbstractOption::FixedLength/;
1111
1212 use constant code => DHCP6_OPT_ELAPSED_TIME;
--- a/Net/DHCP6/Option/OptionRequest.pm
+++ b/Net/DHCP6/Option/OptionRequest.pm
@@ -6,7 +6,7 @@ use warnings;
66 use Net::DHCP6::AbstractOption::Vector;
77 use Net::DHCP6::Parameters qw/DHCP6_OPT_ORO/;
88
9-our $VERSION = "0.0.1";
9+our $VERSION = "0.001";
1010 our @ISA = qw/Net::DHCP6::AbstractOption::Vector/;
1111
1212 use constant code => DHCP6_OPT_ORO;
--- a/Net/DHCP6/Option/ServerId.pm
+++ b/Net/DHCP6/Option/ServerId.pm
@@ -6,7 +6,7 @@ use warnings;
66 use Net::DHCP6::AbstractOption::DUID;
77 use Net::DHCP6::Parameters qw/DHCP6_OPT_SERVERID/;
88
9-our $VERSION = "0.0.1";
9+our $VERSION = "0.001";
1010 our @ISA = qw/Net::DHCP6::AbstractOption::DUID/;
1111
1212 use constant code => DHCP6_OPT_SERVERID;
--- a/Net/DHCP6/OptionList.pm
+++ b/Net/DHCP6/OptionList.pm
@@ -3,7 +3,7 @@ package Net::DHCP6::OptionList;
33 use strict;
44 use warnings;
55
6-our $VERSION = "0.0.1";
6+our $VERSION = "0.001";
77
88 sub option {
99 my $self = shift;
--- a/Net/DHCP6/Parameters.pm
+++ b/Net/DHCP6/Parameters.pm
@@ -4,7 +4,7 @@ package Net::DHCP6::Parameters;
44 use strict;
55 use warnings;
66
7-our $VERSION = "0.0.1";
7+our $VERSION = "0.001";
88
99 use Exporter;
1010 our @ISA = ("Exporter");
--- a/Net/DHCP6/Value/Ipv6Addr.pm
+++ b/Net/DHCP6/Value/Ipv6Addr.pm
@@ -3,7 +3,7 @@ package Net::DHCP6::Value::Ipv6Addr;
33 use strict;
44 use warnings;
55
6-our $VERSION = "0.0.1";
6+our $VERSION = "0.001";
77
88 sub new {
99 my $class = shift;