Skip to content

Commit 1b7e991

Browse files
Bumped version to 1.0.2.post8
Updated vendor constant enumerations at Sat Aug 26 10:07:23 UTC 2023. The following files have been changed: pcapkit/const/reg/ethertype.py pcapkit/const/reg/linktype.py
1 parent d64a7bb commit 1b7e991

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

conda/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7
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.post7'
127+
__version__ = '1.0.2.post8'

pcapkit/const/reg/ethertype.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,9 @@ class EtherType(IntEnum):
456456
#: IEEE Std 802.1Q - Multiple Multicast Registration Protocol (MMRP) [IEEE]
457457
IEEE_Std_802_1Q_Multiple_Multicast_Registration_Protocol = 0x88F6
458458

459+
#: Precision Time Protocol [NIST: IEEE Std 1588][Kang Lee]
460+
Precision_Time_Protocol = 0x88F7
461+
459462
#: IEEE Std 802.11 - Fast Roaming Remote Request (802.11r) [IEEE]
460463
IEEE_Std_802_11_Fast_Roaming_Remote_Request = 0x890D
461464

pcapkit/const/reg/linktype.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -895,6 +895,11 @@ class LinkType(IntEnum):
895895
#: [``DLT_FIRA_UCI``] Ultra-wideband (UWB) controller interface protocol (UCI).
896896
FIRA_UCI = 299
897897

898+
#: [``DLT_MDB``] MDB (Multi-Drop Bus) protocol between a vending machine
899+
#: controller and peripherals inside the vending machine, with the message
900+
#: format specified by the PCAP format for MDB specification.
901+
MDB = 300
902+
898903
@staticmethod
899904
def get(key: 'int | str', default: 'int' = -1) -> 'LinkType':
900905
"""Backport support for original codes.

0 commit comments

Comments
 (0)