Skip to content

Commit cfdf2ab

Browse files
Bumped version to 1.3.1.post13
Updated vendor constant enumerations at Sat May 4 10:04:40 UTC 2024. The following files have been changed: pcapkit/const/reg/apptype.py pcapkit/const/reg/linktype.py pcapkit/const/reg/transtype.py
1 parent 78ef9f7 commit cfdf2ab

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

pcapkit/__init__.py

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

125125
#: version number
126-
__version__ = '1.3.1.post12'
126+
__version__ = '1.3.1.post13'

pcapkit/const/reg/apptype.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24530,7 +24530,8 @@ def __hash__(self) -> 'int':
2453024530
#: - [UDP] LUCIA Pareja Data Group
2453124531
lpdg: 'AppType' = 10805, 'lpdg', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2453224532

24533-
#: [TCP] Linux Network Block Device
24533+
#: [TCP] Network Block Device
24534+
#: [https://github.com/NetworkBlockDevice/nbd/blob/master/doc/proto.md]
2453424535
nbd: 'AppType' = 10809, 'nbd', TransportProtocol.get('tcp')
2453524536

2453624537
#: [UDP] Reserved

pcapkit/const/reg/linktype.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -475,18 +475,21 @@ class LinkType(IntEnum):
475475
C_HDLC_WITH_DIR = 205
476476

477477
#: [``DLT_FRELAY_WITH_DIR``] Frame Relay LAPF frames, beginning with a one-byte
478-
#: pseudo-header with a zero value meaning "received by this host" (DCE->DTE)
479-
#: and a non-zero value meaning "sent by this host" (DTE->DCE), followed by an
478+
#: pseudo-header with a zero value meaning "received by this host" (DCEDTE)
479+
#: and a non-zero value meaning "sent by this host" (DTEDCE), followed by an
480480
#: ITU-T Recommendation Q.922 LAPF header starting with the address field, and
481481
#: without an FCS at the end of the frame.
482482
FRELAY_WITH_DIR = 206
483483

484484
#: [``DLT_LAPB_WITH_DIR``] Link Access Procedure, Balanced (LAPB), as specified
485485
#: by ITU-T Recommendation X.25, preceded with a one-byte pseudo-header with a
486-
#: zero value meaning "received by this host" (DCE->DTE) and a non-zero value
487-
#: meaning "sent by this host" (DTE->DCE).
486+
#: zero value meaning "received by this host" (DCEDTE) and a non-zero value
487+
#: meaning "sent by this host" (DTEDCE).
488488
LAPB_WITH_DIR = 207
489489

490+
#: [``DLT_IPMB_LINUX``] Legacy names (do not use) for Linux I2C below.
491+
IPMB_LINUX = 209
492+
490493
#: [``DLT_I2C_LINUX``] Linux I2C packets.
491494
I2C_LINUX = 209
492495

pcapkit/const/reg/transtype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ class TransType(IntEnum):
376376
#: IPX in IP [CJ Lee]
377377
IPX_in_IP = 111
378378

379-
#: Virtual Router Redundancy Protocol [RFC-ietf-rtgwg-vrrp-rfc5798bis-18]
379+
#: Virtual Router Redundancy Protocol [:rfc:`9568`]
380380
VRRP = 112
381381

382382
#: PGM Reliable Transport Protocol [Tony Speakman]

0 commit comments

Comments
 (0)