pypcapkit 1.3.1.post8__cp38-none-any.whl → 1.3.1.post18__cp38-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/ftp/command.py +2 -2
- pcapkit/const/ipv6/router_alert.py +1 -1
- pcapkit/const/ipv6/routing.py +2 -4
- pcapkit/const/ipx/packet.py +3 -0
- pcapkit/const/ipx/socket.py +2 -2
- pcapkit/const/reg/apptype.py +16 -9
- pcapkit/const/reg/ethertype.py +8 -10
- pcapkit/const/reg/linktype.py +43 -64
- pcapkit/const/reg/transtype.py +1 -1
- {pypcapkit-1.3.1.post8.dist-info → pypcapkit-1.3.1.post18.dist-info}/METADATA +1 -1
- {pypcapkit-1.3.1.post8.dist-info → pypcapkit-1.3.1.post18.dist-info}/RECORD +16 -16
- {pypcapkit-1.3.1.post8.dist-info → pypcapkit-1.3.1.post18.dist-info}/WHEEL +1 -1
- {pypcapkit-1.3.1.post8.dist-info → pypcapkit-1.3.1.post18.dist-info}/LICENSE +0 -0
- {pypcapkit-1.3.1.post8.dist-info → pypcapkit-1.3.1.post18.dist-info}/entry_points.txt +0 -0
- {pypcapkit-1.3.1.post8.dist-info → pypcapkit-1.3.1.post18.dist-info}/top_level.txt +0 -0
pcapkit/__init__.py
CHANGED
pcapkit/const/ftp/command.py
CHANGED
@@ -233,8 +233,8 @@ class Command(StrEnum):
|
|
233
233
|
#: Rename From [:rfc:`959`]
|
234
234
|
RNFR: 'Command' = 'RNFR', FEATCode.base, 'Rename From', CommandType.S | CommandType.P, ConformanceRequirement.M
|
235
235
|
|
236
|
-
#: Rename
|
237
|
-
RNTO: 'Command' = 'RNTO', FEATCode.base, 'Rename
|
236
|
+
#: Rename To [:rfc:`959`][RFC Errata 5748]
|
237
|
+
RNTO: 'Command' = 'RNTO', FEATCode.base, 'Rename To', CommandType.S, ConformanceRequirement.M
|
238
238
|
|
239
239
|
#: Site Parameters [:rfc:`959`][:rfc:`1123`]
|
240
240
|
SITE: 'Command' = 'SITE', FEATCode.base, 'Site Parameters', CommandType.S, ConformanceRequirement.M
|
@@ -225,7 +225,7 @@ class RouterAlert(IntEnum):
|
|
225
225
|
#: NSIS NATFW NSLP [:rfc:`5973`]
|
226
226
|
NSIS_NATFW_NSLP = 68
|
227
227
|
|
228
|
-
#: MPLS OAM [:rfc:`7506`]
|
228
|
+
#: MPLS OAM (DEPRECATED) [:rfc:`7506`][:rfc:`9570`]
|
229
229
|
MPLS_OAM = 69
|
230
230
|
|
231
231
|
#: Reserved [The Internet Assigned Numbers Authority]
|
pcapkit/const/ipv6/routing.py
CHANGED
@@ -33,12 +33,10 @@ class Routing(IntEnum):
|
|
33
33
|
#: Segment Routing Header (SRH) [:rfc:`8754`]
|
34
34
|
Segment_Routing_Header = 4
|
35
35
|
|
36
|
-
#: CRH-16
|
37
|
-
#: expires 2024-06-07) [draft-bonica-6man-comp-rtg-hdr-30]
|
36
|
+
#: CRH-16 [RFC-ietf-6man-comp-rtg-hdr-10]
|
38
37
|
CRH_16 = 5
|
39
38
|
|
40
|
-
#: CRH-32
|
41
|
-
#: expires 2024-06-07) [draft-bonica-6man-comp-rtg-hdr-30]
|
39
|
+
#: CRH-32 [RFC-ietf-6man-comp-rtg-hdr-10]
|
42
40
|
CRH_32 = 6
|
43
41
|
|
44
42
|
#: RFC3692-style Experiment 1 [:rfc:`4727`]
|
pcapkit/const/ipx/packet.py
CHANGED
pcapkit/const/ipx/socket.py
CHANGED
pcapkit/const/reg/apptype.py
CHANGED
@@ -3050,17 +3050,14 @@ class AppType(StrEnum):
|
|
3050
3050
|
#: [TCP] Reserved
|
3051
3051
|
reserved_914: 'AppType' = 914, 'reserved', TransportProtocol.get('tcp')
|
3052
3052
|
|
3053
|
-
#: [UDP] Routing in Fat Trees Link Information
|
3054
|
-
#: 2023-02-17, extension registered 2024-01-12, expires 2025-02-17) [draft-
|
3055
|
-
#: ietf-rift-rift-16]
|
3053
|
+
#: [UDP] Routing in Fat Trees Link Information Element [RFC-ietf-rift-rift-24]
|
3056
3054
|
rift_lies: 'AppType' = 914, 'rift-lies', TransportProtocol.get('udp')
|
3057
3055
|
|
3058
3056
|
#: [TCP] Reserved
|
3059
3057
|
reserved_915: 'AppType' = 915, 'reserved', TransportProtocol.get('tcp')
|
3060
3058
|
|
3061
|
-
#: [UDP] Routing in Fat Trees Topology Information
|
3062
|
-
#:
|
3063
|
-
#: [draft-ietf-rift-rift-16]
|
3059
|
+
#: [UDP] Routing in Fat Trees Topology Information Element [RFC-ietf-rift-
|
3060
|
+
#: rift-24]
|
3064
3061
|
rift_ties: 'AppType' = 915, 'rift-ties', TransportProtocol.get('udp')
|
3065
3062
|
|
3066
3063
|
#: [TCP] BIND9 remote name daemon controller
|
@@ -6408,8 +6405,8 @@ class AppType(StrEnum):
|
|
6408
6405
|
#: - [UDP] TDP Suite
|
6409
6406
|
tdp_suite: 'AppType' = 1814, 'tdp-suite', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
6410
6407
|
|
6411
|
-
#: - [TCP]
|
6412
|
-
#: - [UDP]
|
6408
|
+
#: - [TCP] Manufacturing messaging protocol for factory transmission
|
6409
|
+
#: - [UDP] Manufacturing messaging protocol for factory transmission
|
6413
6410
|
mmpft: 'AppType' = 1815, 'mmpft', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
6414
6411
|
|
6415
6412
|
#: - [TCP] HARP
|
@@ -24530,7 +24527,8 @@ class AppType(StrEnum):
|
|
24530
24527
|
#: - [UDP] LUCIA Pareja Data Group
|
24531
24528
|
lpdg: 'AppType' = 10805, 'lpdg', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
24532
24529
|
|
24533
|
-
#: [TCP]
|
24530
|
+
#: [TCP] Network Block Device
|
24531
|
+
#: [https://github.com/NetworkBlockDevice/nbd/blob/master/doc/proto.md]
|
24534
24532
|
nbd: 'AppType' = 10809, 'nbd', TransportProtocol.get('tcp')
|
24535
24533
|
|
24536
24534
|
#: [UDP] Reserved
|
@@ -27563,6 +27561,9 @@ class AppType(StrEnum):
|
|
27563
27561
|
#: - [UDP] Access Control Gateway
|
27564
27562
|
acs_ctl_gw: 'AppType' = -1, 'acs-ctl-gw', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
27565
27563
|
|
27564
|
+
#: [TCP] AXIS Camera Station Pro Server
|
27565
|
+
acsp_server: 'AppType' = -1, 'acsp-server', TransportProtocol.get('tcp')
|
27566
|
+
|
27566
27567
|
#: [N/A] ActionItems
|
27567
27568
|
actionitems: 'AppType' = -1, 'actionitems', TransportProtocol.get('undefined')
|
27568
27569
|
|
@@ -28144,6 +28145,12 @@ class AppType(StrEnum):
|
|
28144
28145
|
#: [TCP] DNS Dynamic Update Service over TLS [:rfc:`6281`]
|
28145
28146
|
dns_update_tls: 'AppType' = -1, 'dns-update-tls', TransportProtocol.get('tcp')
|
28146
28147
|
|
28148
|
+
#: [TCP] DNS-SD Service Registration [RFC-ietf-dnssd-srp-25]
|
28149
|
+
dnssd_srp: 'AppType' = -1, 'dnssd-srp', TransportProtocol.get('tcp')
|
28150
|
+
|
28151
|
+
#: [TCP] DNS-SD Service Registration (TLS) [RFC-ietf-dnssd-srp-25]
|
28152
|
+
dnssd_srp_tls: 'AppType' = -1, 'dnssd-srp-tls', TransportProtocol.get('tcp')
|
28153
|
+
|
28147
28154
|
#: [N/A] Roar (Death of Productivity)
|
28148
28155
|
dop: 'AppType' = -1, 'dop', TransportProtocol.get('undefined')
|
28149
28156
|
|
pcapkit/const/reg/ethertype.py
CHANGED
@@ -50,7 +50,7 @@ class EtherType(IntEnum):
|
|
50
50
|
#: DLOG [Neil Sembower]
|
51
51
|
DLOG_0x0661 = 0x0661
|
52
52
|
|
53
|
-
#: Internet Protocol version 4 (IPv4) [
|
53
|
+
#: Internet Protocol version 4 (IPv4) [:rfc:`9542`]
|
54
54
|
Internet_Protocol_version_4 = 0x0800
|
55
55
|
|
56
56
|
#: X.75 Internet [Neil Sembower]
|
@@ -68,7 +68,7 @@ class EtherType(IntEnum):
|
|
68
68
|
#: X.25 Level 3 [Neil Sembower]
|
69
69
|
X_25_Level_3 = 0x0805
|
70
70
|
|
71
|
-
#: Address Resolution Protocol (ARP) [
|
71
|
+
#: Address Resolution Protocol (ARP) [:rfc:`9542`]
|
72
72
|
Address_Resolution_Protocol = 0x0806
|
73
73
|
|
74
74
|
#: XNS Compatability [Neil Sembower]
|
@@ -318,7 +318,7 @@ class EtherType(IntEnum):
|
|
318
318
|
Wellfleet_Communications = 0x80FF
|
319
319
|
|
320
320
|
#: Customer VLAN Tag Type (C-Tag, formerly called the Q-Tag) (initially
|
321
|
-
#: Wellfleet) [
|
321
|
+
#: Wellfleet) [:rfc:`9542`]
|
322
322
|
Customer_VLAN_Tag_Type = 0x8100
|
323
323
|
|
324
324
|
#: Hayes Microcomputers [Neil Sembower]
|
@@ -381,7 +381,7 @@ class EtherType(IntEnum):
|
|
381
381
|
#: Delta Controls [Neil Sembower]
|
382
382
|
Delta_Controls = 0x86DE
|
383
383
|
|
384
|
-
#: Internet Protocol version 6 (IPv6) [
|
384
|
+
#: Internet Protocol version 6 (IPv6) [:rfc:`9542`]
|
385
385
|
Internet_Protocol_version_6 = 0x86DD
|
386
386
|
|
387
387
|
#: ATOMIC [Joe Touch]
|
@@ -396,17 +396,16 @@ class EtherType(IntEnum):
|
|
396
396
|
#: Secure Data [:rfc:`1701`]
|
397
397
|
Secure_Data = 0x876D
|
398
398
|
|
399
|
-
#: IEEE Std 802.3 - Ethernet Passive Optical Network (EPON) [EPON][
|
400
|
-
#: intarea-rfc7042bis-11]
|
399
|
+
#: IEEE Std 802.3 - Ethernet Passive Optical Network (EPON) [EPON][:rfc:`9542`]
|
401
400
|
IEEE_Std_802_3_Ethernet_Passive_Optical_Network = 0x8808
|
402
401
|
|
403
402
|
#: Slow Protocols (Link Aggregation, OAM, etc.) [IEEE]
|
404
403
|
Slow_Protocols = 0x8809
|
405
404
|
|
406
|
-
#: Point-to-Point Protocol (PPP) [
|
405
|
+
#: Point-to-Point Protocol (PPP) [:rfc:`9542`]
|
407
406
|
Point_to_Point_Protocol = 0x880B
|
408
407
|
|
409
|
-
#: General Switch Management Protocol (GSMP) [
|
408
|
+
#: General Switch Management Protocol (GSMP) [:rfc:`9542`]
|
410
409
|
General_Switch_Management_Protocol = 0x880C
|
411
410
|
|
412
411
|
#: Ethernet NIC hardware and software testing [Wind River]
|
@@ -418,8 +417,7 @@ class EtherType(IntEnum):
|
|
418
417
|
#: MPLS with upstream-assigned label [:rfc:`5332`]
|
419
418
|
MPLS_with_upstream_assigned_label = 0x8848
|
420
419
|
|
421
|
-
#: Multicast Channel Allocation Protocol (MCAP) [
|
422
|
-
#: rfc7042bis-11]
|
420
|
+
#: Multicast Channel Allocation Protocol (MCAP) [:rfc:`9542`]
|
423
421
|
Multicast_Channel_Allocation_Protocol = 0x8861
|
424
422
|
|
425
423
|
#: PPP over Ethernet (PPPoE) Discovery Stage [:rfc:`2516`]
|
pcapkit/const/reg/linktype.py
CHANGED
@@ -49,7 +49,7 @@ class LinkType(IntEnum):
|
|
49
49
|
#: 1201; for RFC 1051 frames, ATA 878.2 is not used.
|
50
50
|
ARCNET_BSD = 7
|
51
51
|
|
52
|
-
#: [``DLT_SLIP``] SLIP,
|
52
|
+
#: [``DLT_SLIP``] SLIP, with a header giving packet direction
|
53
53
|
SLIP = 8
|
54
54
|
|
55
55
|
#: [``DLT_PPP``] PPP, as per RFC 1661 and RFC 1662; if the first 2 bytes are
|
@@ -136,8 +136,8 @@ class LinkType(IntEnum):
|
|
136
136
|
#: [``DLT_CISCO_IOS``] Cisco internal use.
|
137
137
|
CISCO_IOS = 118
|
138
138
|
|
139
|
-
#: [``DLT_PRISM_HEADER``] Prism monitor mode information followed by an 802.11
|
140
|
-
#:
|
139
|
+
#: [``DLT_PRISM_HEADER``] Prism monitor mode information, followed by an 802.11
|
140
|
+
#: frame.
|
141
141
|
IEEE802_11_PRISM = 119
|
142
142
|
|
143
143
|
#: [``DLT_AIRONET_HEADER``] Reserved for Aironet 802.11 cards, with an Aironet
|
@@ -148,8 +148,7 @@ class LinkType(IntEnum):
|
|
148
148
|
#: header being the Network\_Header as described in that RFC.
|
149
149
|
IP_OVER_FC = 122
|
150
150
|
|
151
|
-
#: [``DLT_SUNATM``] ATM traffic
|
152
|
-
#: devices.
|
151
|
+
#: [``DLT_SUNATM``] ATM traffic captured from a SunATM device.
|
153
152
|
SUNATM = 123
|
154
153
|
|
155
154
|
#: [``DLT_RIO``] RapidIO.
|
@@ -232,9 +231,7 @@ class LinkType(IntEnum):
|
|
232
231
|
#: MAC frames.
|
233
232
|
DOCSIS = 143
|
234
233
|
|
235
|
-
#: [``DLT_LINUX_IRDA``] Linux-IrDA packets
|
236
|
-
#: header, with the payload for IrDA frames beginning with by the IrLAP header
|
237
|
-
#: as defined by the IrDA Link Access Protocol specification.
|
234
|
+
#: [``DLT_LINUX_IRDA``] Linux-IrDA packets
|
238
235
|
LINUX_IRDA = 144
|
239
236
|
|
240
237
|
#: [``DLT_IBM_SP``] IBM SP switch.
|
@@ -342,10 +339,7 @@ class LinkType(IntEnum):
|
|
342
339
|
#: [``DLT_ERF_POS``] An ERF header followed by Packet-over-SONET.
|
343
340
|
ERF_POS = 176
|
344
341
|
|
345
|
-
#: [``DLT_LINUX_LAPD``]
|
346
|
-
#: as specified by ITU-T Recommendation Q.920 and ITU-T Recommendation Q.921,
|
347
|
-
#: captured via vISDN, with a LINKTYPE\_LINUX\_LAPD header, followed by the
|
348
|
-
#: Q.921 frame, starting with the address field.
|
342
|
+
#: [``DLT_LINUX_LAPD``] Linux vISDN LAPD frames
|
349
343
|
LINUX_LAPD = 177
|
350
344
|
|
351
345
|
#: [``DLT_JUNIPER_ETHER``] Juniper Networks private data link type. Ethernet
|
@@ -480,24 +474,26 @@ class LinkType(IntEnum):
|
|
480
474
|
C_HDLC_WITH_DIR = 205
|
481
475
|
|
482
476
|
#: [``DLT_FRELAY_WITH_DIR``] Frame Relay LAPF frames, beginning with a one-byte
|
483
|
-
#: pseudo-header with a zero value meaning "received by this host" (DCE
|
484
|
-
#: and a non-zero value meaning "sent by this host" (DTE
|
477
|
+
#: pseudo-header with a zero value meaning "received by this host" (DCE⇒DTE)
|
478
|
+
#: and a non-zero value meaning "sent by this host" (DTE⇒DCE), followed by an
|
485
479
|
#: ITU-T Recommendation Q.922 LAPF header starting with the address field, and
|
486
480
|
#: without an FCS at the end of the frame.
|
487
481
|
FRELAY_WITH_DIR = 206
|
488
482
|
|
489
483
|
#: [``DLT_LAPB_WITH_DIR``] Link Access Procedure, Balanced (LAPB), as specified
|
490
484
|
#: by ITU-T Recommendation X.25, preceded with a one-byte pseudo-header with a
|
491
|
-
#: zero value meaning "received by this host" (DCE
|
492
|
-
#: meaning "sent by this host" (DTE
|
485
|
+
#: zero value meaning "received by this host" (DCE⇒DTE) and a non-zero value
|
486
|
+
#: meaning "sent by this host" (DTE⇒DCE).
|
493
487
|
LAPB_WITH_DIR = 207
|
494
488
|
|
495
|
-
#: [``DLT_IPMB_LINUX``]
|
496
|
-
#: header.
|
489
|
+
#: [``DLT_IPMB_LINUX``] Legacy names (do not use) for Linux I2C below.
|
497
490
|
IPMB_LINUX = 209
|
498
491
|
|
492
|
+
#: [``DLT_I2C_LINUX``] Linux I2C packets.
|
493
|
+
I2C_LINUX = 209
|
494
|
+
|
499
495
|
#: [``DLT_FLEXRAY``] FlexRay automotive bus frames or symbols, preceded by a
|
500
|
-
#: pseudo-header
|
496
|
+
#: pseudo-header
|
501
497
|
FLEXRAY = 210
|
502
498
|
|
503
499
|
#: [``DLT_MOST``] Media Oriented Systems Transport (MOST) bus for multimedia
|
@@ -505,7 +501,7 @@ class LinkType(IntEnum):
|
|
505
501
|
MOST = 211
|
506
502
|
|
507
503
|
#: [``DLT_LIN``] Local Interconnect Network (LIN) automotive bus, preceded by a
|
508
|
-
#: pseudo-header
|
504
|
+
#: pseudo-header
|
509
505
|
LIN = 212
|
510
506
|
|
511
507
|
#: [``DLT_X2E_SERIAL``] X2E-private data link type used for serial line
|
@@ -570,8 +566,7 @@ class LinkType(IntEnum):
|
|
570
566
|
#: 0xBC 0xB5 0x55 0x55.
|
571
567
|
FC_2_WITH_FRAME_DELIMS = 225
|
572
568
|
|
573
|
-
#: [``DLT_IPNET``] Solaris ipnet
|
574
|
-
#: datagram.
|
569
|
+
#: [``DLT_IPNET``] Solaris ipnet
|
575
570
|
IPNET = 226
|
576
571
|
|
577
572
|
#: [``DLT_CAN_SOCKETCAN``] CAN (Controller Area Network) frames, with a pseudo-
|
@@ -622,14 +617,12 @@ class LinkType(IntEnum):
|
|
622
617
|
#: [``DLT_NFLOG``] Linux netlink NETLINK NFLOG socket log messages.
|
623
618
|
NFLOG = 239
|
624
619
|
|
625
|
-
#: [``DLT_NETANALYZER``]
|
626
|
-
#:
|
627
|
-
#: beginning with the MAC header and ending with the FCS.
|
620
|
+
#: [``DLT_NETANALYZER``] Ethernet frames, preceded by a Hilscher netANALYZER
|
621
|
+
#: pseudo-header.
|
628
622
|
NETANALYZER = 240
|
629
623
|
|
630
|
-
#: [``DLT_NETANALYZER_TRANSPARENT``]
|
631
|
-
#:
|
632
|
-
#: beginning with the preamble, SFD, and MAC header, and ending with the FCS.
|
624
|
+
#: [``DLT_NETANALYZER_TRANSPARENT``] Ethernet frames, including the preamble
|
625
|
+
#: and SFD, preceded by a Hilscher netANALYZER pseudo-header.
|
633
626
|
NETANALYZER_TRANSPARENT = 241
|
634
627
|
|
635
628
|
#: [``DLT_IPOIB``] IP-over-InfiniBand, as specified by RFC 4391 section 6.
|
@@ -640,17 +633,11 @@ class LinkType(IntEnum):
|
|
640
633
|
#: 2.4.3.2 "Transport Stream packet layer").
|
641
634
|
MPEG_2_TS = 243
|
642
635
|
|
643
|
-
#: [``DLT_NG40``]
|
644
|
-
#: Iub/Iur-over-IP format as used by their ng40 protocol tester, followed by
|
645
|
-
#: frames for the Frame Protocol as specified by 3GPP TS 25.427 for dedicated
|
646
|
-
#: channels and 3GPP TS 25.435 for common/shared channels in the case of ATM
|
647
|
-
#: AAL2 or UDP traffic, by SSCOP packets as specified by ITU-T Recommendation
|
648
|
-
#: Q.2110 for ATM AAL5 traffic, and by NBAP packets for SCTP traffic.
|
636
|
+
#: [``DLT_NG40``] Frames from ng4T GmbH's ng40 protocol tester.
|
649
637
|
NG40 = 244
|
650
638
|
|
651
|
-
#: [``DLT_NFC_LLCP``]
|
652
|
-
#:
|
653
|
-
#: Protocol Technical Specification.
|
639
|
+
#: [``DLT_NFC_LLCP``] NFC Logical Link Control Protocol frames, with a pseudo-
|
640
|
+
#: header.
|
654
641
|
NFC_LLCP = 245
|
655
642
|
|
656
643
|
#: Packet filter state syncing.
|
@@ -668,9 +655,8 @@ class LinkType(IntEnum):
|
|
668
655
|
#: [``DLT_USBPCAP``] USB packets, beginning with a USBPcap header.
|
669
656
|
USBPCAP = 249
|
670
657
|
|
671
|
-
#: [``DLT_RTAC_SERIAL``] Serial-line
|
672
|
-
#:
|
673
|
-
#: number of industrial control protocols.
|
658
|
+
#: [``DLT_RTAC_SERIAL``] Serial-line packets from the Schweitzer Engineering
|
659
|
+
#: Laboratories "RTAC" product.
|
674
660
|
RTAC_SERIAL = 250
|
675
661
|
|
676
662
|
#: [``DLT_BLUETOOTH_LE_LL``] Bluetooth Low Energy air interface Link Layer
|
@@ -725,9 +711,8 @@ class LinkType(IntEnum):
|
|
725
711
|
#: Recommendation G.9959, with some MAC layer fields moved.
|
726
712
|
ZWAVE_R3 = 262
|
727
713
|
|
728
|
-
#: [``DLT_WATTSTOPPER_DLM``]
|
729
|
-
#:
|
730
|
-
#: captures.
|
714
|
+
#: [``DLT_WATTSTOPPER_DLM``] WattStopper Digital Lighting Management (DLM) and
|
715
|
+
#: Legrand Nitoo Open protocol packets.
|
731
716
|
WATTSTOPPER_DLM = 263
|
732
717
|
|
733
718
|
#: [``DLT_ISO_14443``] Messages between ISO 14443 contactless smartcards
|
@@ -736,12 +721,11 @@ class LinkType(IntEnum):
|
|
736
721
|
#: for ISO14443 specification.
|
737
722
|
ISO_14443 = 264
|
738
723
|
|
739
|
-
#: [``DLT_RDS``] Radio data system (RDS) groups
|
740
|
-
#: in this form.
|
724
|
+
#: [``DLT_RDS``] IEC 62106 Radio data system (RDS) groups.
|
741
725
|
RDS = 265
|
742
726
|
|
743
|
-
#: [``DLT_USB_DARWIN``] USB packets
|
744
|
-
#:
|
727
|
+
#: [``DLT_USB_DARWIN``] USB packets captured on a Darwin-based operating system
|
728
|
+
#: (macOS, etc.).
|
745
729
|
USB_DARWIN = 266
|
746
730
|
|
747
731
|
#: [``DLT_OPENFLOW``] OpenFlow messages with an additional 12-octet header, as
|
@@ -767,7 +751,7 @@ class LinkType(IntEnum):
|
|
767
751
|
VSOCK = 271
|
768
752
|
|
769
753
|
#: [``DLT_NORDIC_BLE``] Messages to and from a Nordic Semiconductor nRF Sniffer
|
770
|
-
#: for Bluetooth LE packets
|
754
|
+
#: for Bluetooth LE packets.
|
771
755
|
NORDIC_BLE = 272
|
772
756
|
|
773
757
|
#: [``DLT_DOCSIS31_XRA31``] DOCSIS packets and bursts, preceded by a pseudo-
|
@@ -778,8 +762,7 @@ class LinkType(IntEnum):
|
|
778
762
|
#: 99-4, starting with the preamble and always ending with a CRC field.
|
779
763
|
ETHERNET_MPACKET = 274
|
780
764
|
|
781
|
-
#: [``DLT_DISPLAYPORT_AUX``] DisplayPort AUX channel monitoring
|
782
|
-
#: specified by VESA DisplayPort (DP) Standard preceded by a pseudo-header.
|
765
|
+
#: [``DLT_DISPLAYPORT_AUX``] DisplayPort AUX channel monitoring messages.
|
783
766
|
DISPLAYPORT_AUX = 275
|
784
767
|
|
785
768
|
#: [``DLT_LINUX_SLL2``] Linux "cooked" capture encapsulation v2.
|
@@ -788,7 +771,7 @@ class LinkType(IntEnum):
|
|
788
771
|
#: [``DLT_SERCOS_MONITOR``] Sercos Monitor.
|
789
772
|
SERCOS_MONITOR = 277
|
790
773
|
|
791
|
-
#: [``DLT_OPENVIZSLA``]
|
774
|
+
#: [``DLT_OPENVIZSLA``] OpenVizsla FPGA-based USB sniffer frames.
|
792
775
|
OPENVIZSLA = 278
|
793
776
|
|
794
777
|
#: [``DLT_EBHSCR``] Elektrobit High Speed Capture and Replay (EBHSCR) format.
|
@@ -798,25 +781,23 @@ class LinkType(IntEnum):
|
|
798
781
|
#: dispatch tracer, in the the graph dispatcher trace format.
|
799
782
|
VPP_DISPATCH = 280
|
800
783
|
|
801
|
-
#: [``DLT_DSA_TAG_BRCM``] Ethernet frames, with a switch tag inserted
|
802
|
-
#: the source address field and the type/length field in the Ethernet header.
|
784
|
+
#: [``DLT_DSA_TAG_BRCM``] Ethernet frames, with a Broadcom switch tag inserted.
|
803
785
|
DSA_TAG_BRCM = 281
|
804
786
|
|
805
|
-
#: [``DLT_DSA_TAG_BRCM_PREPEND``] Ethernet frames, with a switch tag
|
806
|
-
#:
|
787
|
+
#: [``DLT_DSA_TAG_BRCM_PREPEND``] Ethernet frames, with a Broadcom switch tag
|
788
|
+
#: prepended.
|
807
789
|
DSA_TAG_BRCM_PREPEND = 282
|
808
790
|
|
809
791
|
#: [``DLT_IEEE802_15_4_TAP``] IEEE 802.15.4 Low-Rate Wireless Networks, with a
|
810
792
|
#: pseudo-header containing TLVs with metadata preceding the 802.15.4 header.
|
811
793
|
IEEE802_15_4_TAP = 283
|
812
794
|
|
813
|
-
#: [``DLT_DSA_TAG_DSA``] Ethernet frames, with a switch tag
|
814
|
-
#:
|
795
|
+
#: [``DLT_DSA_TAG_DSA``] Ethernet frames, with a Marvell DSA switch tag
|
796
|
+
#: inserted.
|
815
797
|
DSA_TAG_DSA = 284
|
816
798
|
|
817
|
-
#: [``DLT_DSA_TAG_EDSA``] Ethernet frames, with a
|
818
|
-
#:
|
819
|
-
#: field in the Ethernet header.
|
799
|
+
#: [``DLT_DSA_TAG_EDSA``] Ethernet frames, with a Marvell EDSA switch tag
|
800
|
+
#: inserted.
|
820
801
|
DSA_TAG_EDSA = 285
|
821
802
|
|
822
803
|
#: [``DLT_ELEE``] Payload of lawful intercept packets using the ELEE protocol.
|
@@ -840,16 +821,14 @@ class LinkType(IntEnum):
|
|
840
821
|
#: standards page, beginning with a Base Header.
|
841
822
|
ATSC_ALP = 289
|
842
823
|
|
843
|
-
#: [``DLT_ETW``] Event Tracing for Windows messages
|
844
|
-
#: header.
|
824
|
+
#: [``DLT_ETW``] Event Tracing for Windows messages.
|
845
825
|
ETW = 290
|
846
826
|
|
847
827
|
#: [``DLT_NETANALYZER_NG``] Reserved for Hilscher Gesellschaft fuer
|
848
828
|
#: Systemautomation mbH netANALYZER NG hardware and software.
|
849
829
|
NETANALYZER_NG = 291
|
850
830
|
|
851
|
-
#: [``DLT_ZBOSS_NCP``]
|
852
|
-
#: stack ZBOSS by DSR. ZBOSS NCP protocol, beginning with a header.
|
831
|
+
#: [``DLT_ZBOSS_NCP``] ZBOSS NCP Serial Protocol, with a pseudo-header.
|
853
832
|
ZBOSS_NCP = 292
|
854
833
|
|
855
834
|
#: [``DLT_USB_2_0_LOW_SPEED``] Low-Speed USB 2.0, 1.1, or 1.0 packet, beginning
|
pcapkit/const/reg/transtype.py
CHANGED
@@ -376,7 +376,7 @@ class TransType(IntEnum):
|
|
376
376
|
#: IPX in IP [CJ Lee]
|
377
377
|
IPX_in_IP = 111
|
378
378
|
|
379
|
-
#: Virtual Router Redundancy Protocol [
|
379
|
+
#: Virtual Router Redundancy Protocol [:rfc:`9568`]
|
380
380
|
VRRP = 112
|
381
381
|
|
382
382
|
#: PGM Reliable Transport Protocol [Tony Speakman]
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pcapkit/__init__.py,sha256=
|
1
|
+
pcapkit/__init__.py,sha256=CG_CiOsVGRU2EM4TPocY4NNYhVSujzYt7PptLGlk2VE,4098
|
2
2
|
pcapkit/__main__.py,sha256=pckITFrDzzXCXPM_r03AAhvpGyqFWdwyKDkGRZENiv4,6313
|
3
3
|
pcapkit/all.py,sha256=6G7rVFlajYk98F5vCYcLOw-CkXdEw4C2zAwnTgU0asU,6679
|
4
4
|
pcapkit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -7,7 +7,7 @@ pcapkit/const/arp/__init__.py,sha256=07sDWsRJ5ku_G1Cc-aBpJOrfdjSx6j4OpYadhMLAMwY
|
|
7
7
|
pcapkit/const/arp/hardware.py,sha256=0VJr0oAyuX5LDWe-pnsaGISoYiqzK0JMql2khFU9tLg,4338
|
8
8
|
pcapkit/const/arp/operation.py,sha256=HfqBJaBAmhpulxMq0SqwOs59KSAF9-2eGQrqkOspSAU,3124
|
9
9
|
pcapkit/const/ftp/__init__.py,sha256=ICFUj-uRyoMU7tOTUqPwE1tiKc9b71fLcbCgi9iPACs,936
|
10
|
-
pcapkit/const/ftp/command.py,sha256=
|
10
|
+
pcapkit/const/ftp/command.py,sha256=TD9lnr2neKI3rU2ZEhNLHS9fT5NMiPQXVpxeaGx5ML4,12361
|
11
11
|
pcapkit/const/ftp/return_code.py,sha256=nYuql3m8DJA0Ocuw8VZcYiMMnRKb_-FBOd2jsCgcTjE,11538
|
12
12
|
pcapkit/const/hip/__init__.py,sha256=cfC7fg9VhuoWAaeQQJ5x_EO1dA5TbscTdkr3jZ-Xluc,5583
|
13
13
|
pcapkit/const/hip/certificate.py,sha256=00sHuIZ-tA3uAUlnSUgYSCl8tt5Lj-14Qb3CHpdm4Tc,2081
|
@@ -52,14 +52,14 @@ pcapkit/const/ipv6/extension_header.py,sha256=u_nV7HEmMfk_VU51JZ04-XogHUCYL4TCaR
|
|
52
52
|
pcapkit/const/ipv6/option.py,sha256=b_jZPRLqTLGzFbFSuUB6Nkb6_w4BiO3eVWs19ofHVCU,3767
|
53
53
|
pcapkit/const/ipv6/option_action.py,sha256=imkDogX8I3sVqS3cCHgDc20n3Q_VWudimEjbV9tNFQU,1504
|
54
54
|
pcapkit/const/ipv6/qs_function.py,sha256=fvhFc8MdaZwtD6_NgCTR5NlKfQ4QUh5rEzecEnUn3BY,1447
|
55
|
-
pcapkit/const/ipv6/router_alert.py,sha256=
|
56
|
-
pcapkit/const/ipv6/routing.py,sha256=
|
55
|
+
pcapkit/const/ipv6/router_alert.py,sha256=tVD4Uv7RCCGuFYnkix4SDKujNMhXeUiQxvhZtpfEwtY,8830
|
56
|
+
pcapkit/const/ipv6/routing.py,sha256=ZRUaxm0c6LaKXxi5n5ukq7zM9FJJGluIO9INzXZYiS8,2179
|
57
57
|
pcapkit/const/ipv6/seed_id.py,sha256=TtZaMyaXLhwLiB2rrakxWNIGeFv7lHchAy70C7F3YE0,1529
|
58
58
|
pcapkit/const/ipv6/smf_dpd_mode.py,sha256=UQZ0eSNBgYn3eRzuaiukXq5PYe8LFJw3VU9MvYRpERM,1689
|
59
59
|
pcapkit/const/ipv6/tagger_id.py,sha256=vxNOW6pwFrdduaYwVyAd0ZhwH_EfYsWCFdXDLq7u8vs,1633
|
60
60
|
pcapkit/const/ipx/__init__.py,sha256=3pmHqdDOF1JChjeYIcrywSXGWR4Glk7cOBNCb97gimA,903
|
61
|
-
pcapkit/const/ipx/packet.py,sha256=
|
62
|
-
pcapkit/const/ipx/socket.py,sha256=
|
61
|
+
pcapkit/const/ipx/packet.py,sha256=zWFo9uMKaOuP85pl7ZMkcWX_mGY52Bi48_v2IsH70Ec,1809
|
62
|
+
pcapkit/const/ipx/socket.py,sha256=J8oODUIDAwWsGfl7ppHVB-aLUI2nMCaYajPFDeXCAXc,3187
|
63
63
|
pcapkit/const/l2tp/__init__.py,sha256=44PAmgqOa-hP_TO3BZZ7RdqG5onnz9FEfLiJMJYZiOI,548
|
64
64
|
pcapkit/const/l2tp/type.py,sha256=xXzOOqsZQF-6xGUrGoBNjyo8tDBvFjX_1hiIkFSK3o4,1330
|
65
65
|
pcapkit/const/mh/__init__.py,sha256=NVbh2ht78u_FLU0vq8EMOEpYTQJ6GFyby6yWaEDguZA,14558
|
@@ -117,10 +117,10 @@ 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=
|
121
|
-
pcapkit/const/reg/ethertype.py,sha256=
|
122
|
-
pcapkit/const/reg/linktype.py,sha256=
|
123
|
-
pcapkit/const/reg/transtype.py,sha256=
|
120
|
+
pcapkit/const/reg/apptype.py,sha256=qI3O1x1ci9bpwooXN08Jl45jRz_ixCbhlJaQCvnRx_8,1430425
|
121
|
+
pcapkit/const/reg/ethertype.py,sha256=6Xz-MugXqQMc8hUHmkMMK_zeeYlkJ1Ql9Jtek_e3j1g,26564
|
122
|
+
pcapkit/const/reg/linktype.py,sha256=WU5JvrvjuvWZbdcZaVrb5pGzUEFlS0aTNBZNXa-93Os,34895
|
123
|
+
pcapkit/const/reg/transtype.py,sha256=Y5Ytz6UOXrMHft3HXFRKS5JRZpCrlLi9XIzSh_2Gx1s,12888
|
124
124
|
pcapkit/const/tcp/__init__.py,sha256=PSTSxmdKt5l4NBsXq4m8x6dELWqOSNQxAuWePqTNAw8,1494
|
125
125
|
pcapkit/const/tcp/checksum.py,sha256=0SSu5WD2_BcN6CYnIMI0AoToDBFTcVrxOYNzGinm7kE,1524
|
126
126
|
pcapkit/const/tcp/flags.py,sha256=hTsqWViSxku-j8zsbP3274UxNIeNsBF4ZJAyAXMQnRs,1740
|
@@ -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.1.
|
462
|
-
pypcapkit-1.3.1.
|
463
|
-
pypcapkit-1.3.1.
|
464
|
-
pypcapkit-1.3.1.
|
465
|
-
pypcapkit-1.3.1.
|
466
|
-
pypcapkit-1.3.1.
|
461
|
+
pypcapkit-1.3.1.post18.dist-info/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
|
462
|
+
pypcapkit-1.3.1.post18.dist-info/METADATA,sha256=pzoCw0UAi0YXQQjeT1kP_DFXxdFRLX6rQgPJbO21CUA,7705
|
463
|
+
pypcapkit-1.3.1.post18.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
464
|
+
pypcapkit-1.3.1.post18.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
|
465
|
+
pypcapkit-1.3.1.post18.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
|
466
|
+
pypcapkit-1.3.1.post18.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|