Skip to content

Commit 0ff5b53

Browse files
Bumped version to 1.0.2.post39
Updated vendor constant enumerations at Sat May 24 10:10:19 UTC 2025. The following files have been changed: pcapkit/const/ipv6/option.py pcapkit/const/ipv6/router_alert.py
1 parent 9a5a0fe commit 0ff5b53

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

pcapkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@
124124
]
125125

126126
#: version number
127-
__version__ = '1.0.2.post38'
127+
__version__ = '1.0.2.post39'

pcapkit/const/ipv6/option.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ class Option(IntEnum):
3636
#: Tunnel Encapsulation Limit [:rfc:`2473`]
3737
Tunnel_Encapsulation_Limit = 0x04
3838

39-
#: Router Alert [:rfc:`2711`]
39+
#: Router Alert (DEPRECATED for New Protocols) [:rfc:`2711`][RFC-ietf-6man-
40+
#: deprecate-router-alert-13]
4041
Router_Alert = 0x05
4142

4243
#: Quick-Start [:rfc:`4782`][RFC Errata 2034]

pcapkit/const/ipv6/router_alert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,6 @@ def _missing_(cls, value: 'int') -> 'RouterAlert':
261261
#: Unassigned
262262
return extend_enum(cls, 'Unassigned_%d' % value, value)
263263
if 65503 <= value <= 65534:
264-
#: Reserved for experimental use [:rfc:`5350`]
265-
return extend_enum(cls, 'Reserved for experimental use_%d' % value, value)
264+
#: Reserved [RFC-ietf-6man-deprecate-router-alert-13]
265+
return extend_enum(cls, 'Reserved_%d' % value, value)
266266
return super()._missing_(value)

0 commit comments

Comments
 (0)