pypcapkit 1.3.5.post14__cp312-none-any.whl → 1.3.5.post16__cp312-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pcapkit/__init__.py +1 -1
- pcapkit/const/reg/apptype.py +2 -2
- pcapkit/const/reg/linktype.py +19 -43
- {pypcapkit-1.3.5.post14.dist-info → pypcapkit-1.3.5.post16.dist-info}/METADATA +1 -1
- {pypcapkit-1.3.5.post14.dist-info → pypcapkit-1.3.5.post16.dist-info}/RECORD +9 -9
- {pypcapkit-1.3.5.post14.dist-info → pypcapkit-1.3.5.post16.dist-info}/WHEEL +1 -1
- {pypcapkit-1.3.5.post14.dist-info → pypcapkit-1.3.5.post16.dist-info}/entry_points.txt +0 -0
- {pypcapkit-1.3.5.post14.dist-info → pypcapkit-1.3.5.post16.dist-info}/licenses/LICENSE +0 -0
- {pypcapkit-1.3.5.post14.dist-info → pypcapkit-1.3.5.post16.dist-info}/top_level.txt +0 -0
pcapkit/__init__.py
CHANGED
pcapkit/const/reg/apptype.py
CHANGED
@@ -214,8 +214,8 @@ class AppType(StrEnum):
|
|
214
214
|
#: - [UDP] any private mail system
|
215
215
|
any_private_mail_system: 'AppType' = 24, 'any_private_mail_system', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
216
216
|
|
217
|
-
#: - [TCP] Simple Mail Transfer [
|
218
|
-
#: - [UDP] Simple Mail Transfer [
|
217
|
+
#: - [TCP] Simple Mail Transfer [RFC-ietf-emailcore-rfc5321bis-43]
|
218
|
+
#: - [UDP] Simple Mail Transfer [RFC-ietf-emailcore-rfc5321bis-43]
|
219
219
|
smtp: 'AppType' = 25, 'smtp', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
220
220
|
|
221
221
|
#: - [TCP] Unassigned
|
pcapkit/const/reg/linktype.py
CHANGED
@@ -59,8 +59,7 @@ class LinkType(IntEnum):
|
|
59
59
|
#: [``DLT_PPP_SERIAL``] PPP in HDLC-like framing.
|
60
60
|
PPP_HDLC = 50
|
61
61
|
|
62
|
-
#: [``DLT_PPP_ETHER``] PPPoE
|
63
|
-
#: 2516.
|
62
|
+
#: [``DLT_PPP_ETHER``] PPPoE session packets.
|
64
63
|
PPP_ETHER = 51
|
65
64
|
|
66
65
|
#: [``DLT_SYMANTEC_FIREWALL``] Symantec Enterprise (ex-Axent Raptor) firewall.
|
@@ -125,7 +124,7 @@ class LinkType(IntEnum):
|
|
125
124
|
#: link-layer header.
|
126
125
|
AIRONET_HEADER = 120
|
127
126
|
|
128
|
-
#: [``DLT_IP_OVER_FC``] IP and ATM over Fibre Channel
|
127
|
+
#: [``DLT_IP_OVER_FC``] IP and ATM over Fibre Channel.
|
129
128
|
IP_OVER_FC = 122
|
130
129
|
|
131
130
|
#: [``DLT_SUNATM``] ATM traffic captured from a SunATM device.
|
@@ -186,15 +185,10 @@ class LinkType(IntEnum):
|
|
186
185
|
#: [``DLT_MTP2``] SS7 MTP2 packets.
|
187
186
|
MTP2 = 140
|
188
187
|
|
189
|
-
#: [``DLT_MTP3``]
|
190
|
-
#: specified by ITU-T Recommendation Q.704, with no MTP2 header preceding the
|
191
|
-
#: MTP3 packet.
|
188
|
+
#: [``DLT_MTP3``] SS7 MTP3 packets.
|
192
189
|
MTP3 = 141
|
193
190
|
|
194
|
-
#: [``DLT_SCCP``]
|
195
|
-
#: specified by ITU-T Recommendation Q.711, ITU-T Recommendation Q.712, ITU-T
|
196
|
-
#: Recommendation Q.713, and ITU-T Recommendation Q.714, with no MTP3 or MTP2
|
197
|
-
#: headers preceding the SCCP packet.
|
191
|
+
#: [``DLT_SCCP``] SS7 SCCP packets.
|
198
192
|
SCCP = 142
|
199
193
|
|
200
194
|
#: [``DLT_DOCSIS``] DOCSIS MAC frames, as described by the DOCSIS 4.0 MAC and
|
@@ -266,15 +260,11 @@ class LinkType(IntEnum):
|
|
266
260
|
#: [``DLT_JUNIPER_MONITOR``] Juniper Networks private data link type.
|
267
261
|
JUNIPER_MONITOR = 164
|
268
262
|
|
269
|
-
#: [``DLT_BACNET_MS_TP``] BACnet MS/TP frames
|
270
|
-
#: MS/TP Frame Format of ANSI/ASHRAE Standard 135, BACnet® - A Data
|
271
|
-
#: Communication Protocol for Building Automation and Control Networks,
|
272
|
-
#: including the preamble and, if present, the Data CRC.
|
263
|
+
#: [``DLT_BACNET_MS_TP``] BACnet MS/TP frames.
|
273
264
|
BACNET_MS_TP = 165
|
274
265
|
|
275
|
-
#: [``DLT_PPP_PPPD``] PPP
|
276
|
-
#:
|
277
|
-
#: incoming and 0x01 for outgoing.
|
266
|
+
#: [``DLT_PPP_PPPD``] PPP preceded by a direction octet and an HDLC-like
|
267
|
+
#: control field.
|
278
268
|
PPP_PPPD = 166
|
279
269
|
|
280
270
|
#: [``DLT_JUNIPER_PPPOE``] Juniper Networks private data link type.
|
@@ -304,10 +294,10 @@ class LinkType(IntEnum):
|
|
304
294
|
#: [``DLT_JUNIPER_PIC_PEER``] Juniper Networks private data link type.
|
305
295
|
JUNIPER_PIC_PEER = 174
|
306
296
|
|
307
|
-
#: [``DLT_ERF_ETH``]
|
297
|
+
#: [``DLT_ERF_ETH``] Endace ERF records of type TYPE\_ETH.
|
308
298
|
ERF_ETH = 175
|
309
299
|
|
310
|
-
#: [``DLT_ERF_POS``]
|
300
|
+
#: [``DLT_ERF_POS``] Endace ERF records of type TYPE\_POS\_HDLC.
|
311
301
|
ERF_POS = 176
|
312
302
|
|
313
303
|
#: [``DLT_LINUX_LAPD``] Linux vISDN LAPD frames
|
@@ -378,8 +368,7 @@ class LinkType(IntEnum):
|
|
378
368
|
#: [``DLT_SITA``] Various link-layer types, with a pseudo-header, for SITA.
|
379
369
|
SITA = 196
|
380
370
|
|
381
|
-
#: [``DLT_ERF``]
|
382
|
-
#: cards; encapsulates Endace ERF records.
|
371
|
+
#: [``DLT_ERF``] Endace ERF records.
|
383
372
|
ERF = 197
|
384
373
|
|
385
374
|
#: [``DLT_RAIF1``] Special header prepended to Ethernet packets when capturing
|
@@ -505,8 +494,7 @@ class LinkType(IntEnum):
|
|
505
494
|
#: [``DLT_JUNIPER_FIBRECHANNEL``] Juniper Networks private data link type.
|
506
495
|
JUNIPER_FIBRECHANNEL = 234
|
507
496
|
|
508
|
-
#: [``DLT_DVB_CI``] DVB-CI messages, with
|
509
|
-
#: PCAP format for DVB-CI specification.
|
497
|
+
#: [``DLT_DVB_CI``] DVB-CI messages, with a pseudo-header.
|
510
498
|
DVB_CI = 235
|
511
499
|
|
512
500
|
#: [``DLT_MUX27010``] Variant of 3GPP TS 27.010 multiplexing protocol.
|
@@ -529,7 +517,7 @@ class LinkType(IntEnum):
|
|
529
517
|
#: header, preamble and SFD, preceded by a Hilscher.
|
530
518
|
NETANALYZER_TRANSPARENT = 241
|
531
519
|
|
532
|
-
#: [``DLT_IPOIB``] IP-over-InfiniBand
|
520
|
+
#: [``DLT_IPOIB``] IP-over-InfiniBand.
|
533
521
|
IPOIB = 242
|
534
522
|
|
535
523
|
#: [``DLT_MPEG_2_TS``] MPEG-2 Transport Stream transport packets.
|
@@ -691,15 +679,10 @@ class LinkType(IntEnum):
|
|
691
679
|
#: 5 of the Z-Wave Serial API Host Application Programming Guide.
|
692
680
|
Z_WAVE_SERIAL = 287
|
693
681
|
|
694
|
-
#: [``DLT_USB_2_0``] USB 2.0, 1.1, or 1.0
|
695
|
-
#: described by Chapter 8 "Protocol Layer" of the the Universal Serial Bus
|
696
|
-
#: Specification Revision 2.0. Deprecated in favor of speed specific USB 2.0,
|
697
|
-
#: 1.1, or 1.0 linktypes.
|
682
|
+
#: [``DLT_USB_2_0``] USB 2.0, 1.1, or 1.0 packets.
|
698
683
|
USB_2_0 = 288
|
699
684
|
|
700
|
-
#: [``DLT_ATSC_ALP``] ATSC Link-Layer Protocol frames
|
701
|
-
#: 5 of the A/330 Link-Layer Protocol specification, found at the ATSC 3.0
|
702
|
-
#: standards page, beginning with a Base Header.
|
685
|
+
#: [``DLT_ATSC_ALP``] ATSC Link-Layer Protocol frames.
|
703
686
|
ATSC_ALP = 289
|
704
687
|
|
705
688
|
#: [``DLT_ETW``] Event Tracing for Windows messages.
|
@@ -712,23 +695,16 @@ class LinkType(IntEnum):
|
|
712
695
|
#: [``DLT_ZBOSS_NCP``] ZBOSS NCP Serial Protocol, with a pseudo-header.
|
713
696
|
ZBOSS_NCP = 292
|
714
697
|
|
715
|
-
#: [``DLT_USB_2_0_LOW_SPEED``] Low-Speed USB 2.0, 1.1, or 1.0
|
716
|
-
#: with a PID, as described by Chapter 8 "Protocol Layer" of the the Universal
|
717
|
-
#: Serial Bus Specification Revision 2.0.
|
698
|
+
#: [``DLT_USB_2_0_LOW_SPEED``] Low-Speed USB 2.0, 1.1, or 1.0 packets..
|
718
699
|
USB_2_0_LOW_SPEED = 293
|
719
700
|
|
720
|
-
#: [``DLT_USB_2_0_FULL_SPEED``] Full-Speed USB 2.0, 1.1, or 1.0
|
721
|
-
#: beginning with a PID, as described by Chapter 8 "Protocol Layer" of the the
|
722
|
-
#: Universal Serial Bus Specification Revision 2.0.
|
701
|
+
#: [``DLT_USB_2_0_FULL_SPEED``] Full-Speed USB 2.0, 1.1, or 1.0 packets.
|
723
702
|
USB_2_0_FULL_SPEED = 294
|
724
703
|
|
725
|
-
#: [``DLT_USB_2_0_HIGH_SPEED``] High-Speed USB 2.0
|
726
|
-
#: PID, as described by Chapter 8 "Protocol Layer" of the the Universal Serial
|
727
|
-
#: Bus Specification Revision 2.0.
|
704
|
+
#: [``DLT_USB_2_0_HIGH_SPEED``] High-Speed USB 2.0 packets.
|
728
705
|
USB_2_0_HIGH_SPEED = 295
|
729
706
|
|
730
|
-
#: [``DLT_AUERSWALD_LOG``] Auerswald Logger Protocol
|
731
|
-
#: document.
|
707
|
+
#: [``DLT_AUERSWALD_LOG``] Auerswald Logger Protocol packets.
|
732
708
|
AUERSWALD_LOG = 296
|
733
709
|
|
734
710
|
#: [``DLT_ZWAVE_TAP``] Z-Wave packets, with a metadata header.
|
@@ -741,7 +717,7 @@ class LinkType(IntEnum):
|
|
741
717
|
#: [``DLT_FIRA_UCI``] Ultra-wideband (UWB) controller interface protocol (UCI).
|
742
718
|
FIRA_UCI = 299
|
743
719
|
|
744
|
-
#: [``DLT_MDB``] MDB (Multi-Drop Bus)
|
720
|
+
#: [``DLT_MDB``] MDB (Multi-Drop Bus) messages, with a pseudo-header.
|
745
721
|
MDB = 300
|
746
722
|
|
747
723
|
#: [``DLT_DECT_NR``] DECT-2020 New Radio (NR) MAC layer.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pcapkit/__init__.py,sha256=
|
1
|
+
pcapkit/__init__.py,sha256=XyXRhWraDTQA5rdhsUMeAqLC5nX5VJhK-9Q0IY-qx3Y,4026
|
2
2
|
pcapkit/__main__.py,sha256=G3rJrhCwkxlxOa04zwRJ4mq4G1k8JYWES3JnsaeMDe4,6415
|
3
3
|
pcapkit/all.py,sha256=6G7rVFlajYk98F5vCYcLOw-CkXdEw4C2zAwnTgU0asU,6679
|
4
4
|
pcapkit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -117,9 +117,9 @@ pcapkit/const/pcapng/record_type.py,sha256=4rZytbhhF6u5SPvQ8ew3jx4OhN_rwDQG3I4Jl
|
|
117
117
|
pcapkit/const/pcapng/secrets_type.py,sha256=n_662aowLtqA25ilbdG6BWb2rYmrdBJt79_SISzfJkw,1578
|
118
118
|
pcapkit/const/pcapng/verdict_type.py,sha256=_jEkN0g6CX-DGshAj-lUiZjiwdK7Fqou2pnzgZ-WyIk,1476
|
119
119
|
pcapkit/const/reg/__init__.py,sha256=xKABPHwDQ0diN2sFA7hkw42FNsb6tx294XemEjTs2g8,1469
|
120
|
-
pcapkit/const/reg/apptype.py,sha256=
|
120
|
+
pcapkit/const/reg/apptype.py,sha256=K-tLpz6ORS_xIfnJvd_p9MEZr72ZWfYZA_7ProPYTr0,1434119
|
121
121
|
pcapkit/const/reg/ethertype.py,sha256=6Xz-MugXqQMc8hUHmkMMK_zeeYlkJ1Ql9Jtek_e3j1g,26564
|
122
|
-
pcapkit/const/reg/linktype.py,sha256=
|
122
|
+
pcapkit/const/reg/linktype.py,sha256=FPvSyVKT4s0zeyl9JGIVnNOr_0Pc8VPxZM4O2cZILqA,23128
|
123
123
|
pcapkit/const/reg/transtype.py,sha256=quUphafWvhgSJYulKmhBtb3h4vqiE9qyHWPAt0tWPBs,13019
|
124
124
|
pcapkit/const/tcp/__init__.py,sha256=PSTSxmdKt5l4NBsXq4m8x6dELWqOSNQxAuWePqTNAw8,1494
|
125
125
|
pcapkit/const/tcp/checksum.py,sha256=0SSu5WD2_BcN6CYnIMI0AoToDBFTcVrxOYNzGinm7kE,1524
|
@@ -458,9 +458,9 @@ pcapkit/vendor/tcp/mp_tcp_option.py,sha256=f6_-VMoQFnhuEbxs17Q1rp6JjFSLXGK3w1K2v
|
|
458
458
|
pcapkit/vendor/tcp/option.py,sha256=p05DrOt2m0QCf4gjLJzRshQRvaWxmt2PIzsv2UMjsa8,3043
|
459
459
|
pcapkit/vendor/vlan/__init__.py,sha256=qvLktJ0yuoZokas6-_ZGwMJOzbujSCM8pZHQ9jjTegU,674
|
460
460
|
pcapkit/vendor/vlan/priority_level.py,sha256=xVu6M-Ys4pft5I-qPCCxM-KfnMAUnZppD2qPO9gPkVE,2961
|
461
|
-
pypcapkit-1.3.5.
|
462
|
-
pypcapkit-1.3.5.
|
463
|
-
pypcapkit-1.3.5.
|
464
|
-
pypcapkit-1.3.5.
|
465
|
-
pypcapkit-1.3.5.
|
466
|
-
pypcapkit-1.3.5.
|
461
|
+
pypcapkit-1.3.5.post16.dist-info/licenses/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
|
462
|
+
pypcapkit-1.3.5.post16.dist-info/METADATA,sha256=M41O4ZrpbOMj02IpmJ7UMZxK3ouXX1JMYlrhaQ-gTds,7754
|
463
|
+
pypcapkit-1.3.5.post16.dist-info/WHEEL,sha256=GHB6lJx2juba1wDgXDNlMTyM13ckjBMKf-OnwgKOCtA,91
|
464
|
+
pypcapkit-1.3.5.post16.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
|
465
|
+
pypcapkit-1.3.5.post16.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
|
466
|
+
pypcapkit-1.3.5.post16.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|