Skip to content

Commit 2f2fb14

Browse files
Bumped version to 1.3.5.post12
Updated vendor constant enumerations at Sat Mar 29 10:04:45 UTC 2025. The following files have been changed: pcapkit/const/reg/apptype.py pcapkit/const/reg/linktype.py pcapkit/const/tcp/flags.py pcapkit/const/tcp/option.py
1 parent 81a7cd0 commit 2f2fb14

File tree

6 files changed

+20
-29
lines changed

6 files changed

+20
-29
lines changed

conda/build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1
1+
0

pcapkit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@
121121
]
122122

123123
#: version number
124-
__version__ = '1.3.5.post11'
124+
__version__ = '1.3.5.post12'

pcapkit/const/reg/apptype.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -21912,6 +21912,13 @@ def __hash__(self) -> 'int':
2191221912
#: - [UDP] Proprietary immutable distributed data storage
2191321913
rome: 'AppType' = 7663, 'rome', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2191421914

21915+
#: [TCP] AuthorityGate Secure API communication for Orchestrated task
21916+
#: sequencing
21917+
authoritygate: 'AppType' = 7668, 'authoritygate', TransportProtocol.get('tcp')
21918+
21919+
#: [UDP] Reserved
21920+
reserved_7668: 'AppType' = 7668, 'reserved', TransportProtocol.get('udp')
21921+
2191521922
#: [TCP] iMQ STOMP Server
2191621923
imqstomp: 'AppType' = 7672, 'imqstomp', TransportProtocol.get('tcp')
2191721924

@@ -31242,7 +31249,10 @@ def _missing_(cls, value: 'int') -> 'AppType':
3124231249
if 7649 <= value <= 7662:
3124331250
#: [N/A] Unassigned
3124431251
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
31245-
if 7664 <= value <= 7671:
31252+
if 7664 <= value <= 7667:
31253+
#: [N/A] Unassigned
31254+
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
31255+
if 7669 <= value <= 7671:
3124631256
#: [N/A] Unassigned
3124731257
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
3124831258
if 7678 <= value <= 7679:

pcapkit/const/reg/linktype.py

+3-20
Original file line numberDiff line numberDiff line change
@@ -375,15 +375,7 @@ class LinkType(IntEnum):
375375
#: [``DLT_IEEE802_16_MAC_CPS``] IEEE 802.16 MAC Common Part Sublayer.
376376
IEEE802_16_MAC_CPS = 188
377377

378-
#: [``DLT_USB_LINUX``] USB packets, beginning with a Linux USB header, as
379-
#: specified by the struct usbmon\_packet in the Documentation/usb/usbmon.txt
380-
#: file in the Linux source tree. Only the first 48 bytes of that header are
381-
#: present. All fields in the header are in host byte order. When performing a
382-
#: live capture, the host byte order is the byte order of the machine on that
383-
#: the packets are captured. When reading a pcap file, the byte order is the
384-
#: byte order for the file, as specified by the file's magic number; when
385-
#: reading a pcapng file, the byte order is the byte order for the section of
386-
#: the pcapng file, as specified by the Section Header Block.
378+
#: [``DLT_USB_LINUX``] USB packets, beginning with a Linux USB header.
387379
USB_LINUX = 189
388380

389381
#: [``DLT_CAN20B``] Controller Area Network (CAN) v. 2.0B.
@@ -519,17 +511,8 @@ class LinkType(IntEnum):
519511
#: [``DLT_MPLS``] MPLS, with an MPLS label as the link-layer header.
520512
MPLS = 219
521513

522-
#: [``DLT_USB_LINUX_MMAPPED``] USB packets, beginning with a Linux USB header,
523-
#: as specified by the struct usbmon\_packet in the
524-
#: Documentation/usb/usbmon.txt file in the Linux source tree. All 64 bytes of
525-
#: the header are present. All fields in the header are in host byte order.
526-
#: When performing a live capture, the host byte order is the byte order of the
527-
#: machine on that the packets are captured. When reading a pcap file, the byte
528-
#: order is the byte order for the file, as specified by the file's magic
529-
#: number; when reading a pcapng file, the byte order is the byte order for the
530-
#: section of the pcapng file, as specified by the Section Header Block. For
531-
#: isochronous transfers, the ndesc field specifies the number of isochronous
532-
#: descriptors that follow.
514+
#: [``DLT_USB_LINUX_MMAPPED``] USB packets, beginning with an memory-mapped
515+
#: Linux USB header.
533516
USB_LINUX_MMAPPED = 220
534517

535518
#: [``DLT_DECT``] DECT packets, with a pseudo-header.

pcapkit/const/tcp/flags.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ class Flags(IntFlag):
3131
#: Reserved for future use [:rfc:`9293`]
3232
Reserved_6 = 1 << 6
3333

34-
#: Reserved for future use [:rfc:`8311`]
35-
Reserved_7 = 1 << 7
34+
#: AE (Accurate ECN) [RFC-ietf-tcpm-accurate-ecn-34]
35+
AE = 1 << 7
3636

3737
#: CWR (Congestion Window Reduced) [:rfc:`3168`]
3838
CWR = 1 << 8

pcapkit/const/tcp/option.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,13 @@ class Option(IntEnum):
138138
#: Reserved (known unauthorized use without proper IANA assignment)
139139
Reserved_78 = 78
140140

141-
#: Accurate ECN Order 0 (AccECN0) (TEMPORARY - registered 2022-08-03, extension
142-
#: registered 2024-07-11, expires 2025-08-03) [draft-ietf-tcpm-accurate-ecn-20]
141+
#: Accurate ECN Order 0 (AccECN0) [RFC-ietf-tcpm-accurate-ecn-34]
143142
Accurate_ECN_Order_0 = 172
144143

145144
#: Reserved
146145
Reserved_173 = 173
147146

148-
#: Accurate ECN Order 1 (AccECN1) (TEMPORARY - registered 2022-08-03, extension
149-
#: registered 2024-07-11, expires 2025-08-03) [draft-ietf-tcpm-accurate-ecn-20]
147+
#: Accurate ECN Order 1 (AccECN1) [RFC-ietf-tcpm-accurate-ecn-34]
150148
Accurate_ECN_Order_1 = 174
151149

152150
#: RFC3692-style Experiment 1 (also improperly used for shipping

0 commit comments

Comments
 (0)