pypcapkit 1.3.5.post12__cp313-none-any.whl → 1.3.5.post13__cp313-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/linktype.py +43 -115
- {pypcapkit-1.3.5.post12.dist-info → pypcapkit-1.3.5.post13.dist-info}/METADATA +1 -1
- {pypcapkit-1.3.5.post12.dist-info → pypcapkit-1.3.5.post13.dist-info}/RECORD +8 -8
- {pypcapkit-1.3.5.post12.dist-info → pypcapkit-1.3.5.post13.dist-info}/WHEEL +0 -0
- {pypcapkit-1.3.5.post12.dist-info → pypcapkit-1.3.5.post13.dist-info}/entry_points.txt +0 -0
- {pypcapkit-1.3.5.post12.dist-info → pypcapkit-1.3.5.post13.dist-info}/licenses/LICENSE +0 -0
- {pypcapkit-1.3.5.post12.dist-info → pypcapkit-1.3.5.post13.dist-info}/top_level.txt +0 -0
pcapkit/__init__.py
CHANGED
pcapkit/const/reg/linktype.py
CHANGED
@@ -47,11 +47,7 @@ class LinkType(IntEnum):
|
|
47
47
|
#: [``DLT_SLIP``] SLIP, with a header giving packet direction
|
48
48
|
SLIP = 8
|
49
49
|
|
50
|
-
#: [``DLT_PPP``] PPP
|
51
|
-
#: 0xff and 0x03, it's PPP in HDLC-like framing, with the PPP header following
|
52
|
-
#: those two bytes, otherwise it's PPP without framing, and the packet begins
|
53
|
-
#: with the PPP header. The data in the frame is not octet-stuffed or bit-
|
54
|
-
#: stuffed.
|
50
|
+
#: [``DLT_PPP``] PPP.
|
55
51
|
PPP = 9
|
56
52
|
|
57
53
|
#: [``DLT_FDDI``] FDDI, as specified by ANSI INCITS 239-1994.
|
@@ -60,11 +56,7 @@ class LinkType(IntEnum):
|
|
60
56
|
#: [``DLT_REDBACK_SMARTEDGE``] Redback SmartEdge 400/800.
|
61
57
|
REDBACK_SMARTEDGE = 32
|
62
58
|
|
63
|
-
#: [``DLT_PPP_SERIAL``] PPP in HDLC-like framing
|
64
|
-
#: with HDLC framing, as per section 4.3.1 of RFC 1547; the first byte will be
|
65
|
-
#: 0xFF for PPP in HDLC-like framing, and will be 0x0F or 0x8F for Cisco PPP
|
66
|
-
#: with HDLC framing. The data in the frame is not octet-stuffed or bit-
|
67
|
-
#: stuffed.
|
59
|
+
#: [``DLT_PPP_SERIAL``] PPP in HDLC-like framing.
|
68
60
|
PPP_HDLC = 50
|
69
61
|
|
70
62
|
#: [``DLT_PPP_ETHER``] PPPoE; the packet begins with a PPPoE header, as per RFC
|
@@ -83,8 +75,7 @@ class LinkType(IntEnum):
|
|
83
75
|
#: header.
|
84
76
|
RAW = 101
|
85
77
|
|
86
|
-
#: [``DLT_C_HDLC``] Cisco PPP with HDLC framing
|
87
|
-
#: 1547.
|
78
|
+
#: [``DLT_C_HDLC``] Cisco PPP with HDLC framing.
|
88
79
|
C_HDLC = 104
|
89
80
|
|
90
81
|
#: [``DLT_IEEE802_11``] IEEE 802.11 wireless LAN.
|
@@ -93,9 +84,7 @@ class LinkType(IntEnum):
|
|
93
84
|
#: [``DLT_ATM_CLIP``] Linux Classical IP over ATM.
|
94
85
|
ATM_CLIP = 106
|
95
86
|
|
96
|
-
#: [``DLT_FRELAY``] Frame Relay LAPF
|
97
|
-
#: Recommendation Q.922 LAPF header starting with the address field, and
|
98
|
-
#: without an FCS at the end of the frame.
|
87
|
+
#: [``DLT_FRELAY``] Frame Relay LAPF.
|
99
88
|
FRELAY = 107
|
100
89
|
|
101
90
|
#: [``DLT_LOOP``] OpenBSD loopback encapsulation.
|
@@ -139,8 +128,7 @@ class LinkType(IntEnum):
|
|
139
128
|
#: link-layer header.
|
140
129
|
AIRONET_HEADER = 120
|
141
130
|
|
142
|
-
#: [``DLT_IP_OVER_FC``]
|
143
|
-
#: header being the Network\_Header as described in that RFC.
|
131
|
+
#: [``DLT_IP_OVER_FC``] IP and ATM over Fibre Channel, as per RFC 4338.
|
144
132
|
IP_OVER_FC = 122
|
145
133
|
|
146
134
|
#: [``DLT_SUNATM``] ATM traffic captured from a SunATM device.
|
@@ -346,8 +334,7 @@ class LinkType(IntEnum):
|
|
346
334
|
#: frames prepended with meta-information.
|
347
335
|
JUNIPER_CHDLC = 181
|
348
336
|
|
349
|
-
#: [``DLT_MFR``] FRF.16.1 Multi-Link Frame Relay frames
|
350
|
-
#: FRF.12 Interface fragmentation format fragmentation header.
|
337
|
+
#: [``DLT_MFR``] FRF.16.1 Multi-Link Frame Relay frames.
|
351
338
|
MFR = 182
|
352
339
|
|
353
340
|
#: [``DLT_JUNIPER_VP``] Juniper Networks private data link type.
|
@@ -364,12 +351,7 @@ class LinkType(IntEnum):
|
|
364
351
|
#: [``DLT_USB_FREEBSD``] USB with FreeBSD header.
|
365
352
|
USB_FREEBSD = 186
|
366
353
|
|
367
|
-
#: [``DLT_BLUETOOTH_HCI_H4``] Bluetooth HCI UART
|
368
|
-
#: contains an HCI packet indicator byte, as specified by the UART Transport
|
369
|
-
#: Layer portion of the most recent Bluetooth Core specification, followed by
|
370
|
-
#: an HCI packet of the specified packet type, as specified by the Host
|
371
|
-
#: Controller Interface Functional Specification portion of the most recent
|
372
|
-
#: Bluetooth Core Specification.
|
354
|
+
#: [``DLT_BLUETOOTH_HCI_H4``] Bluetooth HCI UART Transport Layer packets.
|
373
355
|
BLUETOOTH_HCI_H4 = 187
|
374
356
|
|
375
357
|
#: [``DLT_IEEE802_16_MAC_CPS``] IEEE 802.16 MAC Common Part Sublayer.
|
@@ -385,9 +367,7 @@ class LinkType(IntEnum):
|
|
385
367
|
#: is done by Linux drivers.
|
386
368
|
IEEE802_15_4_LINUX = 191
|
387
369
|
|
388
|
-
#: [``DLT_PPI``] Per-Packet Information
|
389
|
-
#: Packet Information Header Specification, followed by a packet with the
|
390
|
-
#: LINKTYPE\_ value specified by the pph\_dlt field of that header.
|
370
|
+
#: [``DLT_PPI``] Per-Packet Information header precending packet data.
|
391
371
|
PPI = 192
|
392
372
|
|
393
373
|
#: [``DLT_IEEE802_16_MAC_CPS_RADIO``] IEEE 802.16 MAC Common Part Sublayer plus
|
@@ -397,8 +377,7 @@ class LinkType(IntEnum):
|
|
397
377
|
#: [``DLT_JUNIPER_ISM``] Juniper Networks private data link type.
|
398
378
|
JUNIPER_ISM = 194
|
399
379
|
|
400
|
-
#: [``DLT_IEEE802_15_4_WITHFCS``] IEEE 802.15.4
|
401
|
-
#: with each packet having the FCS at the end of the frame.
|
380
|
+
#: [``DLT_IEEE802_15_4_WITHFCS``] IEEE 802.15.4 packets with FCS.
|
402
381
|
IEEE802_15_4_WITHFCS = 195
|
403
382
|
|
404
383
|
#: [``DLT_SITA``] Various link-layer types, with a pseudo-header, for SITA.
|
@@ -419,51 +398,28 @@ class LinkType(IntEnum):
|
|
419
398
|
#: [``DLT_JUNIPER_ST``] Juniper Networks private data link type.
|
420
399
|
JUNIPER_ST = 200
|
421
400
|
|
422
|
-
#: [``DLT_BLUETOOTH_HCI_H4_WITH_PHDR``] Bluetooth HCI UART
|
423
|
-
#:
|
424
|
-
#: the low-order bit of which is set if the frame was sent from the host to the
|
425
|
-
#: controller and clear if the frame was received by the host from the
|
426
|
-
#: controller, followed by an HCI packet indicator byte, as specified by the
|
427
|
-
#: UART Transport Layer portion of the most recent Bluetooth Core
|
428
|
-
#: specification, followed by an HCI packet of the specified packet type, as
|
429
|
-
#: specified by the Host Controller Interface Functional Specification portion
|
430
|
-
#: of the most recent Bluetooth Core Specification.
|
401
|
+
#: [``DLT_BLUETOOTH_HCI_H4_WITH_PHDR``] Bluetooth HCI UART Transport Layer
|
402
|
+
#: packets with a direction pseudo-header.
|
431
403
|
BLUETOOTH_HCI_H4_WITH_PHDR = 201
|
432
404
|
|
433
405
|
#: [``DLT_AX25_KISS``] AX.25 packet, with a 1-byte KISS header containing a
|
434
406
|
#: type indicator.
|
435
407
|
AX25_KISS = 202
|
436
408
|
|
437
|
-
#: [``DLT_LAPD``]
|
438
|
-
#: specified by ITU-T Recommendation Q.920 and ITU-T Recommendation Q.921,
|
439
|
-
#: starting with the address field, with no pseudo-header.
|
409
|
+
#: [``DLT_LAPD``] Q.921 LAPD frames.
|
440
410
|
LAPD = 203
|
441
411
|
|
442
|
-
#: [``DLT_PPP_WITH_DIR``] PPP,
|
443
|
-
#: one-byte pseudo-header with a zero value meaning "received by this host" and
|
444
|
-
#: a non-zero value meaning "sent by this host"; if the first 2 bytes are 0xff
|
445
|
-
#: and 0x03, it's PPP in HDLC-like framing, with the PPP header following those
|
446
|
-
#: two bytes, otherwise it's PPP without framing, and the packet begins with
|
447
|
-
#: the PPP header. The data in the frame is not octet-stuffed or bit-stuffed.
|
412
|
+
#: [``DLT_PPP_WITH_DIR``] PPP, with a direction header.
|
448
413
|
PPP_WITH_DIR = 204
|
449
414
|
|
450
|
-
#: [``DLT_C_HDLC_WITH_DIR``] Cisco PPP with HDLC framing,
|
451
|
-
#:
|
452
|
-
#: meaning "received by this host" and a non-zero value meaning "sent by this
|
453
|
-
#: host".
|
415
|
+
#: [``DLT_C_HDLC_WITH_DIR``] Cisco PPP with HDLC framing, with a direction
|
416
|
+
#: header.
|
454
417
|
C_HDLC_WITH_DIR = 205
|
455
418
|
|
456
|
-
#: [``DLT_FRELAY_WITH_DIR``] Frame Relay LAPF
|
457
|
-
#: pseudo-header with a zero value meaning "received by this host" (DCE⇒DTE)
|
458
|
-
#: and a non-zero value meaning "sent by this host" (DTE⇒DCE), followed by an
|
459
|
-
#: ITU-T Recommendation Q.922 LAPF header starting with the address field, and
|
460
|
-
#: without an FCS at the end of the frame.
|
419
|
+
#: [``DLT_FRELAY_WITH_DIR``] Frame Relay LAPF, with a direction header.
|
461
420
|
FRELAY_WITH_DIR = 206
|
462
421
|
|
463
|
-
#: [``DLT_LAPB_WITH_DIR``]
|
464
|
-
#: by ITU-T Recommendation X.25, preceded with a one-byte pseudo-header with a
|
465
|
-
#: zero value meaning "received by this host" (DCE⇒DTE) and a non-zero value
|
466
|
-
#: meaning "sent by this host" (DTE⇒DCE).
|
422
|
+
#: [``DLT_LAPB_WITH_DIR``] X.25 LAPB, with a direction header.
|
467
423
|
LAPB_WITH_DIR = 207
|
468
424
|
|
469
425
|
#: [``DLT_IPMB_LINUX``] Legacy names (do not use) for Linux I2C below.
|
@@ -480,8 +436,8 @@ class LinkType(IntEnum):
|
|
480
436
|
#: transport.
|
481
437
|
MOST = 211
|
482
438
|
|
483
|
-
#: [``DLT_LIN``] Local Interconnect Network (LIN) automotive bus,
|
484
|
-
#:
|
439
|
+
#: [``DLT_LIN``] Local Interconnect Network (LIN) automotive bus, with a
|
440
|
+
#: metadata header
|
485
441
|
LIN = 212
|
486
442
|
|
487
443
|
#: [``DLT_X2E_SERIAL``] X2E-private data link type used for serial line
|
@@ -492,11 +448,7 @@ class LinkType(IntEnum):
|
|
492
448
|
#: logger family.
|
493
449
|
X2E_XORAYA = 214
|
494
450
|
|
495
|
-
#: [``DLT_IEEE802_15_4_NONASK_PHY``] IEEE 802.15.4
|
496
|
-
#: with each packet having the FCS at the end of the frame, and with the PHY-
|
497
|
-
#: level data for the O-QPSK, BPSK, GFSK, MSK, and RCC DSS BPSK PHYs (4 octets
|
498
|
-
#: of 0 as preamble, one octet of SFD, one octet of frame length + reserved
|
499
|
-
#: bit) preceding the MAC-layer data (starting with the frame control field).
|
451
|
+
#: [``DLT_IEEE802_15_4_NONASK_PHY``] IEEE 802.15.4 packets with PHY header.
|
500
452
|
IEEE802_15_4_NONASK_PHY = 215
|
501
453
|
|
502
454
|
#: [``DLT_LINUX_EVDEV``] Linux evdev events from /dev/input/eventN devices.
|
@@ -511,8 +463,8 @@ class LinkType(IntEnum):
|
|
511
463
|
#: [``DLT_MPLS``] MPLS, with an MPLS label as the link-layer header.
|
512
464
|
MPLS = 219
|
513
465
|
|
514
|
-
#: [``DLT_USB_LINUX_MMAPPED``] USB packets, beginning with an
|
515
|
-
#:
|
466
|
+
#: [``DLT_USB_LINUX_MMAPPED``] USB packets, beginning with an extended Linux
|
467
|
+
#: USB header.
|
516
468
|
USB_LINUX_MMAPPED = 220
|
517
469
|
|
518
470
|
#: [``DLT_DECT``] DECT packets, with a pseudo-header.
|
@@ -525,23 +477,17 @@ class LinkType(IntEnum):
|
|
525
477
|
#: the HART Communication Foundation (IEC/PAS 62591).
|
526
478
|
WIHART = 223
|
527
479
|
|
528
|
-
#: [``DLT_FC_2``] Fibre Channel FC-2 frames
|
480
|
+
#: [``DLT_FC_2``] Fibre Channel FC-2 frames.
|
529
481
|
FC_2 = 224
|
530
482
|
|
531
|
-
#: [``DLT_FC_2_WITH_FRAME_DELIMS``] Fibre Channel FC-2 frames
|
532
|
-
#: encoding of the SOF, followed by a Frame\_Header, and ending with an
|
533
|
-
#: encoding of the SOF. The encodings represent the frame delimiters as 4-byte
|
534
|
-
#: sequences representing the corresponding ordered sets, with K28.5
|
535
|
-
#: represented as 0xBC, and the D symbols as the corresponding byte values; for
|
536
|
-
#: example, SOFi2, which is K28.5 - D21.5 - D1.2 - D21.2, is represented as
|
537
|
-
#: 0xBC 0xB5 0x55 0x55.
|
483
|
+
#: [``DLT_FC_2_WITH_FRAME_DELIMS``] Fibre Channel FC-2 frames with SOF and EOF.
|
538
484
|
FC_2_WITH_FRAME_DELIMS = 225
|
539
485
|
|
540
486
|
#: [``DLT_IPNET``] Solaris ipnet
|
541
487
|
IPNET = 226
|
542
488
|
|
543
|
-
#: [``DLT_CAN_SOCKETCAN``]
|
544
|
-
#: header
|
489
|
+
#: [``DLT_CAN_SOCKETCAN``] Controller Area Network (CAN) frames, with a
|
490
|
+
#: metadata header.
|
545
491
|
CAN_SOCKETCAN = 227
|
546
492
|
|
547
493
|
#: [``DLT_IPV4``] Raw IPv4; the packet begins with an IPv4 header.
|
@@ -550,13 +496,10 @@ class LinkType(IntEnum):
|
|
550
496
|
#: [``DLT_IPV6``] Raw IPv6; the packet begins with an IPv6 header.
|
551
497
|
IPV6 = 229
|
552
498
|
|
553
|
-
#: [``DLT_IEEE802_15_4_NOFCS``] IEEE 802.15.4
|
554
|
-
#: without the FCS at the end of the frame.
|
499
|
+
#: [``DLT_IEEE802_15_4_NOFCS``] IEEE 802.15.4 packets without FCS.
|
555
500
|
IEEE802_15_4_NOFCS = 230
|
556
501
|
|
557
|
-
#: [``DLT_DBUS``] Raw D-Bus messages
|
558
|
-
#: followed by the message type, etc., but without the authentication handshake
|
559
|
-
#: before the message sequence.
|
502
|
+
#: [``DLT_DBUS``] Raw D-Bus messages.
|
560
503
|
DBUS = 231
|
561
504
|
|
562
505
|
#: [``DLT_JUNIPER_VS``] Juniper Networks private data link type.
|
@@ -572,14 +515,10 @@ class LinkType(IntEnum):
|
|
572
515
|
#: PCAP format for DVB-CI specification.
|
573
516
|
DVB_CI = 235
|
574
517
|
|
575
|
-
#: [``DLT_MUX27010``] Variant of 3GPP TS 27.010 multiplexing protocol
|
576
|
-
#: to, but not the same as, 27.010).
|
518
|
+
#: [``DLT_MUX27010``] Variant of 3GPP TS 27.010 multiplexing protocol.
|
577
519
|
MUX27010 = 236
|
578
520
|
|
579
|
-
#: [``DLT_STANAG_5066_D_PDU``] D\_PDUs
|
580
|
-
#: 5066, starting with the synchronization sequence, and including both header
|
581
|
-
#: and data CRCs. The current version of STANAG 5066 is backwards-compatible
|
582
|
-
#: with the 1.0.2 version, although newer versions are classified.
|
521
|
+
#: [``DLT_STANAG_5066_D_PDU``] STANAG 5066 D\_PDUs.
|
583
522
|
STANAG_5066_D_PDU = 237
|
584
523
|
|
585
524
|
#: [``DLT_JUNIPER_ATM_CEMIC``] Juniper Networks private data link type.
|
@@ -588,12 +527,12 @@ class LinkType(IntEnum):
|
|
588
527
|
#: [``DLT_NFLOG``] Linux netlink NETLINK NFLOG socket log messages.
|
589
528
|
NFLOG = 239
|
590
529
|
|
591
|
-
#: [``DLT_NETANALYZER``] Ethernet frames
|
592
|
-
#:
|
530
|
+
#: [``DLT_NETANALYZER``] Ethernet frames with Hilscher netANALYZER pseudo-
|
531
|
+
#: header.
|
593
532
|
NETANALYZER = 240
|
594
533
|
|
595
|
-
#: [``DLT_NETANALYZER_TRANSPARENT``] Ethernet frames
|
596
|
-
#: and SFD, preceded by a Hilscher
|
534
|
+
#: [``DLT_NETANALYZER_TRANSPARENT``] Ethernet frames with netANALYZER pseudo-
|
535
|
+
#: header, preamble and SFD, preceded by a Hilscher.
|
597
536
|
NETANALYZER_TRANSPARENT = 241
|
598
537
|
|
599
538
|
#: [``DLT_IPOIB``] IP-over-InfiniBand, as specified by RFC 4391 section 6.
|
@@ -644,8 +583,7 @@ class LinkType(IntEnum):
|
|
644
583
|
#: [``DLT_NETLINK``] Linux Netlink capture encapsulation.
|
645
584
|
NETLINK = 253
|
646
585
|
|
647
|
-
#: [``DLT_BLUETOOTH_LINUX_MONITOR``] Bluetooth Linux Monitor
|
648
|
-
#: traffic for the BlueZ stack.
|
586
|
+
#: [``DLT_BLUETOOTH_LINUX_MONITOR``] Bluetooth Linux Monitor.
|
649
587
|
BLUETOOTH_LINUX_MONITOR = 254
|
650
588
|
|
651
589
|
#: [``DLT_BLUETOOTH_BREDR_BB``] Bluetooth Basic Rate and Enhanced Data Rate
|
@@ -674,12 +612,10 @@ class LinkType(IntEnum):
|
|
674
612
|
#: packets in this format must match the time stamps in the Trace Data Blocks.
|
675
613
|
IPMI_HPM_2 = 260
|
676
614
|
|
677
|
-
#: [``DLT_ZWAVE_R1_R2``] Z-Wave RF profile R1 and R2 packets
|
678
|
-
#: ITU-T Recommendation G.9959, with some MAC layer fields moved.
|
615
|
+
#: [``DLT_ZWAVE_R1_R2``] Z-Wave RF profile R1 and R2 packets.
|
679
616
|
ZWAVE_R1_R2 = 261
|
680
617
|
|
681
|
-
#: [``DLT_ZWAVE_R3``] Z-Wave RF profile R3 packets
|
682
|
-
#: Recommendation G.9959, with some MAC layer fields moved.
|
618
|
+
#: [``DLT_ZWAVE_R3``] Z-Wave RF profile R3 packets.
|
683
619
|
ZWAVE_R3 = 262
|
684
620
|
|
685
621
|
#: [``DLT_WATTSTOPPER_DLM``] WattStopper Digital Lighting Management (DLM) and
|
@@ -713,8 +649,7 @@ class LinkType(IntEnum):
|
|
713
649
|
#: [``DLT_TI_LLN_SNIFFER``] TI LLN sniffer frames.
|
714
650
|
TI_LLN_SNIFFER = 269
|
715
651
|
|
716
|
-
#: [``DLT_LORATAP``] LoRaTap pseudo-header
|
717
|
-
#: typically the PHYPayload from the LoRaWan specification.
|
652
|
+
#: [``DLT_LORATAP``] LoRaWan packets with a LoRaTap pseudo-header.
|
718
653
|
LORATAP = 270
|
719
654
|
|
720
655
|
#: [``DLT_VSOCK``] Protocol for communication between host and guest machines
|
@@ -759,8 +694,8 @@ class LinkType(IntEnum):
|
|
759
694
|
#: prepended.
|
760
695
|
DSA_TAG_BRCM_PREPEND = 282
|
761
696
|
|
762
|
-
#: [``DLT_IEEE802_15_4_TAP``] IEEE 802.15.4
|
763
|
-
#:
|
697
|
+
#: [``DLT_IEEE802_15_4_TAP``] IEEE 802.15.4 packets, with a pseudo-header
|
698
|
+
#: containing TLVs with metadata preceding the 802.15.4 header.
|
764
699
|
IEEE802_15_4_TAP = 283
|
765
700
|
|
766
701
|
#: [``DLT_DSA_TAG_DSA``] Ethernet frames, with a Marvell DSA switch tag
|
@@ -821,8 +756,7 @@ class LinkType(IntEnum):
|
|
821
756
|
#: document.
|
822
757
|
AUERSWALD_LOG = 296
|
823
758
|
|
824
|
-
#: [``DLT_ZWAVE_TAP``] Z-Wave packets,
|
825
|
-
#: G.9959, with a TAP meta-data header.
|
759
|
+
#: [``DLT_ZWAVE_TAP``] Z-Wave packets, with a metadata header.
|
826
760
|
ZWAVE_TAP = 297
|
827
761
|
|
828
762
|
#: [``DLT_SILABS_DEBUG_CHANNEL``] Silicon Labs debug channel protocol, as
|
@@ -832,16 +766,10 @@ class LinkType(IntEnum):
|
|
832
766
|
#: [``DLT_FIRA_UCI``] Ultra-wideband (UWB) controller interface protocol (UCI).
|
833
767
|
FIRA_UCI = 299
|
834
768
|
|
835
|
-
#: [``DLT_MDB``] MDB (Multi-Drop Bus)
|
836
|
-
#: controller and peripherals inside the vending machine, with the message
|
837
|
-
#: format specified by the PCAP format for MDB specification.
|
769
|
+
#: [``DLT_MDB``] MDB (Multi-Drop Bus) vending machine protocol.
|
838
770
|
MDB = 300
|
839
771
|
|
840
|
-
#: [``DLT_DECT_NR``] DECT-2020 New Radio (NR) MAC layer
|
841
|
-
#: 103 636-4. The Physical Header Field is always encoded using 80 bits (10
|
842
|
-
#: bytes). Broadcast transmissions using 40 bits (5 bytes) is padded with 40
|
843
|
-
#: zero bits (5 bytes). When padding is used the Receiver Identity value 0x0000
|
844
|
-
#: (reserved address) is used to detect broadcast transmissions.
|
772
|
+
#: [``DLT_DECT_NR``] DECT-2020 New Radio (NR) MAC layer.
|
845
773
|
DECT_NR = 301
|
846
774
|
|
847
775
|
@staticmethod
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pcapkit/__init__.py,sha256
|
1
|
+
pcapkit/__init__.py,sha256=jIhIVcv3ENZS4AcyNNTuuXBdI17hDNnXis0IFvA3eI0,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
|
@@ -119,7 +119,7 @@ pcapkit/const/pcapng/verdict_type.py,sha256=_jEkN0g6CX-DGshAj-lUiZjiwdK7Fqou2pnz
|
|
119
119
|
pcapkit/const/reg/__init__.py,sha256=xKABPHwDQ0diN2sFA7hkw42FNsb6tx294XemEjTs2g8,1469
|
120
120
|
pcapkit/const/reg/apptype.py,sha256=qjFIL38KV4QW7kPVRSwRXb5EQqZeIYlUtrFxNeF7_SA,1434105
|
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=MUwgprJkKYpBRdx9hn6Ziglr4Arw_2liKqmzu4TEdZw,26976
|
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.post13.dist-info/licenses/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
|
462
|
+
pypcapkit-1.3.5.post13.dist-info/METADATA,sha256=5Hj3LWybjTsfPmcv_CA9rymUxxrUPnzudBo2weSHPwY,7754
|
463
|
+
pypcapkit-1.3.5.post13.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
464
|
+
pypcapkit-1.3.5.post13.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
|
465
|
+
pypcapkit-1.3.5.post13.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
|
466
|
+
pypcapkit-1.3.5.post13.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|