Skip to content

Commit

Permalink
Bumped version to 1.3.1.post1
Browse files Browse the repository at this point in the history
Updated vendor constant enumerations at Sat Dec 30 10:10:23 UTC 2023. The following files
have been changed: pcapkit/const/reg/linktype.py
  • Loading branch information
github-actions[bot] committed Dec 30, 2023
1 parent 263ea16 commit ad02237
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion conda/build
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2
0
2 changes: 1 addition & 1 deletion pcapkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@
]

#: version number
__version__ = '1.3.1'
__version__ = '1.3.1.post1'
8 changes: 4 additions & 4 deletions pcapkit/const/reg/linktype.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ class LinkType(IntEnum):
#: headers preceding the SCCP packet.
SCCP = 142

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

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

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

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

Expand Down
3 changes: 2 additions & 1 deletion pcapkit/foundation/reassembly/ip.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"""
from typing import TYPE_CHECKING, Generic

from pcapkit.foundation.reassembly.data.ip import _AT, Buffer, BufferID, Datagram, DatagramID, Packet
from pcapkit.foundation.reassembly.data.ip import (_AT, Buffer, BufferID, Datagram, DatagramID,
Packet)
from pcapkit.foundation.reassembly.reassembly import ReassemblyBase as Reassembly

if TYPE_CHECKING:
Expand Down
2 changes: 1 addition & 1 deletion pcapkit/foundation/traceflow/tcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
from typing import TYPE_CHECKING, Generic, overload

from pcapkit.foundation.traceflow.data.tcp import Buffer, BufferID, Index, _AT, Packet
from pcapkit.foundation.traceflow.data.tcp import _AT, Buffer, BufferID, Index, Packet
from pcapkit.foundation.traceflow.traceflow import TraceFlowBase as TraceFlow
from pcapkit.protocols.transport.tcp import TCP as TCP_Protocol

Expand Down

0 comments on commit ad02237

Please sign in to comment.