Skip to content

Commit c8a50e9

Browse files
Bumped version to 1.0.2.post29
Updated vendor constant enumerations at Sat Oct 26 10:10:19 UTC 2024. The following files have been changed: pcapkit/const/reg/transtype.py
1 parent 8f0887a commit c8a50e9

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

conda/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5
1+
0

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.post28'
127+
__version__ = '1.0.2.post29'

pcapkit/const/reg/transtype.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,9 @@ class TransType(IntEnum):
479479
#: Network Service Header [:rfc:`9491`]
480480
NSH = 145
481481

482+
#: Homa [HomaModule][John Ousterhout]
483+
Homa = 146
484+
482485
#: Use for experimentation and testing [:rfc:`3692`]
483486
Use_for_experimentation_and_testing_253 = 253
484487

@@ -514,7 +517,7 @@ def _missing_(cls, value: 'int') -> 'TransType':
514517
"""
515518
if not (isinstance(value, int) and 0 <= value <= 255):
516519
raise ValueError('%r is not a valid %s' % (value, cls.__name__))
517-
if 146 <= value <= 252:
520+
if 147 <= value <= 252:
518521
#: Unassigned [Internet Assigned Numbers Authority]
519522
extend_enum(cls, 'Unassigned_%d' % value, value)
520523
return cls(value)

0 commit comments

Comments
 (0)