Skip to content

Commit ad02237

Browse files
Bumped version to 1.3.1.post1
Updated vendor constant enumerations at Sat Dec 30 10:10:23 UTC 2023. The following files have been changed: pcapkit/const/reg/linktype.py
1 parent 263ea16 commit ad02237

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

conda/build

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

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'
126+
__version__ = '1.3.1.post1'

pcapkit/const/reg/linktype.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class LinkType(IntEnum):
240240
#: headers preceding the SCCP packet.
241241
SCCP = 142
242242

243-
#: [``DLT_DOCSIS``] DOCSIS MAC frames, as described by the DOCSIS 3.1 MAC and
243+
#: [``DLT_DOCSIS``] DOCSIS MAC frames, as described by the DOCSIS 4.0 MAC and
244244
#: Upper Layer Protocols Interface Specification or earlier specifications for
245245
#: MAC frames.
246246
DOCSIS = 143
@@ -385,7 +385,8 @@ class LinkType(IntEnum):
385385
#: [``DLT_JUNIPER_VP``] Juniper Networks private data link type.
386386
JUNIPER_VP = 183
387387

388-
#: [``DLT_A429``] ARINC 429 frames. Every frame contains a 32-bit A429 label.
388+
#: [``DLT_A429``] ARINC 429 frames. Every frame contains a 32-bit A429 word, in
389+
#: little-endian format.
389390
A429 = 184
390391

391392
#: [``DLT_A653_ICM``] ARINC 653 interpartition communication messages. Please
@@ -615,8 +616,7 @@ class LinkType(IntEnum):
615616
#: [``DLT_JUNIPER_FIBRECHANNEL``] Juniper Networks private data link type.
616617
JUNIPER_FIBRECHANNEL = 234
617618

618-
#: [``DLT_DVB_CI``] DVB-CI (DVB Common Interface for communication between a PC
619-
#: Card module and a DVB receiver), with the message format specified by the
619+
#: [``DLT_DVB_CI``] DVB-CI messages, with the message format specified by the
620620
#: PCAP format for DVB-CI specification.
621621
DVB_CI = 235
622622

pcapkit/foundation/reassembly/ip.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"""
1717
from typing import TYPE_CHECKING, Generic
1818

19-
from pcapkit.foundation.reassembly.data.ip import _AT, Buffer, BufferID, Datagram, DatagramID, Packet
19+
from pcapkit.foundation.reassembly.data.ip import (_AT, Buffer, BufferID, Datagram, DatagramID,
20+
Packet)
2021
from pcapkit.foundation.reassembly.reassembly import ReassemblyBase as Reassembly
2122

2223
if TYPE_CHECKING:

pcapkit/foundation/traceflow/tcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212
from typing import TYPE_CHECKING, Generic, overload
1313

14-
from pcapkit.foundation.traceflow.data.tcp import Buffer, BufferID, Index, _AT, Packet
14+
from pcapkit.foundation.traceflow.data.tcp import _AT, Buffer, BufferID, Index, Packet
1515
from pcapkit.foundation.traceflow.traceflow import TraceFlowBase as TraceFlow
1616
from pcapkit.protocols.transport.tcp import TCP as TCP_Protocol
1717

0 commit comments

Comments
 (0)