• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

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

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


Commit MetaInfo

Revision6081790cdfb030bc071037c65dfd6347942a2ad5 (tree)
Zeit2021-08-15 22:27:50
Autordyknon <dyknon@user...>
Commiterdyknon

Log Message

Option::InfoMaxRetrans

Ändern Zusammenfassung

Diff

--- /dev/null
+++ b/Net/DHCP6/Option/InfoMaxRetrans.pm
@@ -0,0 +1,19 @@
1+package Net::DHCP6::Option::InfoMaxRetrans;
2+# RFC8415 21.23.
3+
4+use strict;
5+use warnings;
6+use Net::DHCP6::AbstractOption::Time;
7+use Net::DHCP6::Parameters qw(
8+ DHCP6_OPT_INF_MAX_RT
9+);
10+
11+our $VERSION = "0.001";
12+our @ISA = qw/Net::DHCP6::AbstractOption::Time/;
13+
14+use constant code => DHCP6_OPT_INF_MAX_RT;
15+use constant name => "InfoMaxRetrans";
16+use constant range => (60, 86400+1);
17+
18+__PACKAGE__->register_option;
19+1;