pypcapkit 1.3.1.post9__cp310-none-any.whl → 1.3.1.post20__cp310-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 CHANGED
@@ -123,4 +123,4 @@ __all__ = [
123
123
  ]
124
124
 
125
125
  #: version number
126
- __version__ = '1.3.1.post9'
126
+ __version__ = '1.3.1.post20'
@@ -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 From [:rfc:`959`]
237
- RNTO: 'Command' = 'RNTO', FEATCode.base, 'Rename From', CommandType.S, ConformanceRequirement.M
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 (DEPRECATED) [:rfc:`7506`][RFC-ietf-mpls-lspping-norao-08]
228
+ #: MPLS OAM (DEPRECATED) [:rfc:`7506`][:rfc:`9570`]
229
229
  MPLS_OAM = 69
230
230
 
231
231
  #: Reserved [The Internet Assigned Numbers Authority]
@@ -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 (TEMPORARY - registered 2021-06-07, extension registered 2023-06-08,
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 (TEMPORARY - registered 2021-06-07, extension registered 2023-06-08,
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`]
@@ -40,6 +40,9 @@ class Packet(IntEnum):
40
40
  #: ``NCP``, NetWare Core Protocol
41
41
  NCP = 17
42
42
 
43
+ #: Broadcast[4]
44
+ Broadcast_4 = 20
45
+
43
46
  @staticmethod
44
47
  def get(key: 'int | str', default: 'int' = -1) -> 'Packet':
45
48
  """Backport support for original codes.
@@ -48,8 +48,8 @@ class Socket(IntEnum):
48
48
  #: Used by Novell NetWare Client
49
49
  Used_by_Novell_NetWare_Client = 0x4003
50
50
 
51
- #: IPX
52
- IPX = 0x8060
51
+ #: LLC [4]
52
+ LLC_4 = 0x8060
53
53
 
54
54
  #: TCP over IPXF
55
55
  TCP_over_IPXF = 0x9091
@@ -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 Elements (TEMPORARY - registered
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 Elements (TEMPORARY -
3062
- #: registered 2023-02-17, extension registered 2024-01-12, expires 2025-02-17)
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] MMPFT
6412
- #: - [UDP] MMPFT
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
@@ -20315,6 +20312,15 @@ class AppType(StrEnum):
20315
20312
  #: [UDP] Navtech Radar Sensor Data
20316
20313
  nav_data: 'AppType' = 6317, 'nav-data', TransportProtocol.get('udp')
20317
20314
 
20315
+ #: [TCP] IONA Measurement and control data
20316
+ iona_data: 'AppType' = 6318, 'iona-data', TransportProtocol.get('tcp')
20317
+
20318
+ #: [UDP] Reserved
20319
+ reserved_6318: 'AppType' = 6318, 'reserved', TransportProtocol.get('udp')
20320
+
20321
+ #: [N/A] Unassigned
20322
+ unassigned_6319: 'AppType' = 6319, 'unassigned', TransportProtocol.get('undefined')
20323
+
20318
20324
  #: - [TCP] Double-Take Replication Service
20319
20325
  #: - [UDP] Double-Take Replication Service
20320
20326
  repsvc: 'AppType' = 6320, 'repsvc', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
@@ -24530,7 +24536,8 @@ class AppType(StrEnum):
24530
24536
  #: - [UDP] LUCIA Pareja Data Group
24531
24537
  lpdg: 'AppType' = 10805, 'lpdg', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
24532
24538
 
24533
- #: [TCP] Linux Network Block Device
24539
+ #: [TCP] Network Block Device
24540
+ #: [https://github.com/NetworkBlockDevice/nbd/blob/master/doc/proto.md]
24534
24541
  nbd: 'AppType' = 10809, 'nbd', TransportProtocol.get('tcp')
24535
24542
 
24536
24543
  #: [UDP] Reserved
@@ -27563,6 +27570,9 @@ class AppType(StrEnum):
27563
27570
  #: - [UDP] Access Control Gateway
27564
27571
  acs_ctl_gw: 'AppType' = -1, 'acs-ctl-gw', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
27565
27572
 
27573
+ #: [TCP] AXIS Camera Station Pro Server
27574
+ acsp_server: 'AppType' = -1, 'acsp-server', TransportProtocol.get('tcp')
27575
+
27566
27576
  #: [N/A] ActionItems
27567
27577
  actionitems: 'AppType' = -1, 'actionitems', TransportProtocol.get('undefined')
27568
27578
 
@@ -28144,6 +28154,12 @@ class AppType(StrEnum):
28144
28154
  #: [TCP] DNS Dynamic Update Service over TLS [:rfc:`6281`]
28145
28155
  dns_update_tls: 'AppType' = -1, 'dns-update-tls', TransportProtocol.get('tcp')
28146
28156
 
28157
+ #: [TCP] DNS-SD Service Registration [RFC-ietf-dnssd-srp-25]
28158
+ dnssd_srp: 'AppType' = -1, 'dnssd-srp', TransportProtocol.get('tcp')
28159
+
28160
+ #: [TCP] DNS-SD Service Registration (TLS) [RFC-ietf-dnssd-srp-25]
28161
+ dnssd_srp_tls: 'AppType' = -1, 'dnssd-srp-tls', TransportProtocol.get('tcp')
28162
+
28147
28163
  #: [N/A] Roar (Death of Productivity)
28148
28164
  dop: 'AppType' = -1, 'dop', TransportProtocol.get('undefined')
28149
28165
 
@@ -30866,9 +30882,6 @@ class AppType(StrEnum):
30866
30882
  if 6307 <= value <= 6314:
30867
30883
  #: [N/A] Unassigned
30868
30884
  return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
30869
- if 6318 <= value <= 6319:
30870
- #: [N/A] Unassigned
30871
- return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
30872
30885
  if 6327 <= value <= 6342:
30873
30886
  #: [N/A] Unassigned
30874
30887
  return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
@@ -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) [RFC-ietf-intarea-rfc7042bis-11]
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) [RFC-ietf-intarea-rfc7042bis-11]
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) [RFC-ietf-intarea-rfc7042bis-11]
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) [RFC-ietf-intarea-rfc7042bis-11]
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][RFC-ietf-
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) [RFC-ietf-intarea-rfc7042bis-11]
405
+ #: Point-to-Point Protocol (PPP) [:rfc:`9542`]
407
406
  Point_to_Point_Protocol = 0x880B
408
407
 
409
- #: General Switch Management Protocol (GSMP) [RFC-ietf-intarea-rfc7042bis-11]
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) [RFC-ietf-intarea-
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`]
@@ -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, encapsulated with a LINKTYPE\_SLIP header.
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
- #: header.
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, encapsulated as per the scheme used by SunATM
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, with a LINKTYPE\_LINUX\_IRDA
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``] Link Access Procedures on the D Channel (LAPD) frames,
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->DTE)
484
- #: and a non-zero value meaning "sent by this host" (DTE->DCE), followed by an
477
+ #: pseudo-header with a zero value meaning "received by this host" (DCEDTE)
478
+ #: and a non-zero value meaning "sent by this host" (DTEDCE), 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->DTE) and a non-zero value
492
- #: meaning "sent by this host" (DTE->DCE).
485
+ #: zero value meaning "received by this host" (DCEDTE) and a non-zero value
486
+ #: meaning "sent by this host" (DTEDCE).
493
487
  LAPB_WITH_DIR = 207
494
488
 
495
- #: [``DLT_IPMB_LINUX``] IPMB over an I2C circuit, with a Linux-specific pseudo-
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 pseudo-header, followed by an IPv4 or IPv6
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``] Pseudo-header for Hilscher Gesellschaft für
626
- #: Systemautomation mbH netANALYZER devices, followed by an Ethernet frame,
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``] Pseudo-header for Hilscher Gesellschaft
631
- #: für Systemautomation mbH netANALYZER devices, followed by an Ethernet frame,
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``] Pseudo-header for ng4T GmbH's UMTS Iub/Iur-over-ATM and
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``] Pseudo-header for NFC LLCP packet captures, followed by
652
- #: frame data for the LLCP Protocol as specified by the Logical Link Control
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 packet header for the Schweitzer
672
- #: Engineering Laboratories "RTAC" product, followed by a payload for one of a
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``] Formats for WattStopper Digital Lighting
729
- #: Management (DLM) and Legrand Nitoo Open protocol common packet structure
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, as per IEC 62106, encapsulated
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, beginning with a Darwin (macOS, etc.) USB
744
- #: header.
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, beginning with a pseudo-header.
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 data as
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``] Openvizsla FPGA-based USB sniffer.
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 between
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 inserted
806
- #: before the destination address in the Ethernet header.
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 inserted between
814
- #: the source address field and the type/length field in the Ethernet header.
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 programmable Ethernet type
818
- #: switch tag inserted between the source address field and the type/length
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, beginning with a pseudo-
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``] Serial NCP (Network Co-Processor) protocol for Zigbee
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
@@ -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 [RFC-ietf-rtgwg-vrrp-rfc5798bis-18]
379
+ #: Virtual Router Redundancy Protocol [:rfc:`9568`]
380
380
  VRRP = 112
381
381
 
382
382
  #: PGM Reliable Transport Protocol [Tony Speakman]
@@ -139,14 +139,14 @@ class Option(IntEnum):
139
139
  Reserved_78 = 78
140
140
 
141
141
  #: Accurate ECN Order 0 (AccECN0) (TEMPORARY - registered 2022-08-03, extension
142
- #: registered 2023-06-13, expires 2024-08-03) [draft-ietf-tcpm-accurate-ecn-20]
142
+ #: registered 2024-07-11, expires 2025-08-03) [draft-ietf-tcpm-accurate-ecn-20]
143
143
  Accurate_ECN_Order_0 = 172
144
144
 
145
145
  #: Reserved
146
146
  Reserved_173 = 173
147
147
 
148
148
  #: Accurate ECN Order 1 (AccECN1) (TEMPORARY - registered 2022-08-03, extension
149
- #: registered 2023-06-13, expires 2024-08-03) [draft-ietf-tcpm-accurate-ecn-20]
149
+ #: registered 2024-07-11, expires 2025-08-03) [draft-ietf-tcpm-accurate-ecn-20]
150
150
  Accurate_ECN_Order_1 = 174
151
151
 
152
152
  #: RFC3692-style Experiment 1 (also improperly used for shipping
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypcapkit
3
- Version: 1.3.1.post9
3
+ Version: 1.3.1.post20
4
4
  Summary: PyPCAPKit: comprehensive network packet analysis library
5
5
  Author-email: Jarry Shaw <jarryshaw@icloud.com>
6
6
  Maintainer: Jarry Shaw
@@ -1,4 +1,4 @@
1
- pcapkit/__init__.py,sha256=zF9wp9zvmiKTneuUo9hediUXE9MOyHzNurRYPtzGSow,4097
1
+ pcapkit/__init__.py,sha256=xS0wHnQULwWNnCbQ30zF_S5YFng10o8fyLd86vaLBo8,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=t3UJrHPvdb6AVUm6Mn_dsn3Pu33kEffJIiGxwfKI6bU,12348
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=APhR8hF0vGDnvLVyu8CLYTfcc_RdE8CMhaiMAQWsDf4,8849
56
- pcapkit/const/ipv6/routing.py,sha256=yGhsbeA_z5w4xrzGVKeBFYMbIr41YDgH35dZX_f7wW8,2379
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=EhbR3ZqmpgHOPITiZCtVlpGrreE2Iihq-e_MSFvHTSg,1767
62
- pcapkit/const/ipx/socket.py,sha256=eScKVg1x48UwgdwNpWf8-dmZiEyEjhZIi4CEA_u6ZTg,3181
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,15 +117,15 @@ 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=yUyEdBpDJiE-DtLRZh19l3bcYYptoFXsjko3M8EsOBo,1430042
121
- pcapkit/const/reg/ethertype.py,sha256=Ie2rI6rEC6Us05jtK-hHkrzad6ecTSktK56tLn52TfQ,26732
122
- pcapkit/const/reg/linktype.py,sha256=waebkNbqjfQTn7kySBmUCoVYNxWYL33pZxPcJurmrnE,36784
123
- pcapkit/const/reg/transtype.py,sha256=ulnDwzkZ6WmCpusfsSoBwiT-WROPbDQZNFAX3caM0lo,12910
120
+ pcapkit/const/reg/apptype.py,sha256=79NF_Reki6WFJBXTIpGPSqWk7YuketZJX_VNWSB0Biw,1430578
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
127
127
  pcapkit/const/tcp/mp_tcp_option.py,sha256=deLEl_q8GtoLu0GeJ8Ln3pEK-dHUImbUvNvHfANF9ig,2187
128
- pcapkit/const/tcp/option.py,sha256=JdbYPsWSTeWBV-ZqsSV0PcliGH96hfxc9VvoVYCYQJc,5749
128
+ pcapkit/const/tcp/option.py,sha256=HlXecTCiLRRp2S114uPIwDxmtcGxsETZJrlycx5q1dM,5749
129
129
  pcapkit/const/vlan/__init__.py,sha256=e58kBqVyx-aNe10uWkfI1grb1gI5t-VxyYnmP4qT2bM,690
130
130
  pcapkit/const/vlan/priority_level.py,sha256=lditGE8zcRNmCnPW7lTM45R5Q9RQ-CqBRkqGGDSByJw,1936
131
131
  pcapkit/corekit/__init__.py,sha256=YcNlfudunIO0cnpU7xX_r-xZafcO39TmS8Vp7z45BjE,1659
@@ -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.post9.dist-info/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
462
- pypcapkit-1.3.1.post9.dist-info/METADATA,sha256=Hmych4-qnTuSQZAkw997f-K04C7qyKy6zdZUOJ6H6D8,7704
463
- pypcapkit-1.3.1.post9.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
464
- pypcapkit-1.3.1.post9.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
465
- pypcapkit-1.3.1.post9.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
466
- pypcapkit-1.3.1.post9.dist-info/RECORD,,
461
+ pypcapkit-1.3.1.post20.dist-info/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
462
+ pypcapkit-1.3.1.post20.dist-info/METADATA,sha256=BMGV8YcF9ALi4toot7uOZ7lZy1M-_I7r4D5ur-6bN44,7705
463
+ pypcapkit-1.3.1.post20.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
464
+ pypcapkit-1.3.1.post20.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
465
+ pypcapkit-1.3.1.post20.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
466
+ pypcapkit-1.3.1.post20.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (70.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5