pypcapkit 1.3.5.post24__pp310-none-any.whl → 1.3.5.post29__pp310-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
@@ -121,4 +121,4 @@ __all__ = [
121
121
  ]
122
122
 
123
123
  #: version number
124
- __version__ = '1.3.5.post24'
124
+ __version__ = '1.3.5.post29'
@@ -54,8 +54,9 @@ class StatusCode(IntEnum):
54
54
  #: Early Hints [:rfc:`8297`]
55
55
  CODE_103 = 103, 'Early Hints'
56
56
 
57
- #: Upload Resumption Supported (TEMPORARY - registered 2024-11-13, expires
58
- #: 2025-11-13) [draft-ietf-httpbis-resumable-upload-05]
57
+ #: Upload Resumption Supported (TEMPORARY - registered 2024-11-13, extension
58
+ #: registered 2025-09-15, expires 2026-11-13) [draft-ietf-httpbis-resumable-
59
+ #: upload-05]
59
60
  CODE_104 = 104, 'Upload Resumption Supported'
60
61
 
61
62
  #: OK [:rfc:`9110#section-15.3.1`]
@@ -4389,8 +4389,8 @@ class AppType(StrEnum):
4389
4389
  #: - [UDP] delta-mcp
4390
4390
  delta_mcp: 'AppType' = 1324, 'delta-mcp', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
4391
4391
 
4392
- #: - [TCP] DX-Instrument
4393
- #: - [UDP] DX-Instrument
4392
+ #: - [TCP] Thermo Fisher Scientific Instrumentation (Formally Dionex)
4393
+ #: - [UDP] Thermo Fisher Scientific Instrumentation (Formally Dionex)
4394
4394
  dx_instrument: 'AppType' = 1325, 'dx-instrument', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
4395
4395
 
4396
4396
  #: - [TCP] WIMSIC
@@ -26048,6 +26048,13 @@ class AppType(StrEnum):
26048
26048
  #: [UDP] bilobit Service Update
26049
26049
  bilobit_update: 'AppType' = 24577, 'bilobit-update', TransportProtocol.get('udp')
26050
26050
 
26051
+ #: [UDP] UDP-based IP-Layer Capacity and performance measurement protocol [RFC-
26052
+ #: ietf-ippm-capacity-protocol-25]
26053
+ udpstp: 'AppType' = 24601, 'udpstp', TransportProtocol.get('udp')
26054
+
26055
+ #: [TCP] Reserved
26056
+ reserved_24601: 'AppType' = 24601, 'reserved', TransportProtocol.get('tcp')
26057
+
26051
26058
  #: [TCP] Service used by SmarDTV to communicate between a CAM and a second
26052
26059
  #: screen application
26053
26060
  sdtvwcam: 'AppType' = 24666, 'sdtvwcam', TransportProtocol.get('tcp')
@@ -27045,9 +27052,9 @@ class AppType(StrEnum):
27045
27052
  #: - [UDP] PCP server (pmcd)
27046
27053
  pmcd: 'AppType' = 44321, 'pmcd', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
27047
27054
 
27048
- #: - [TCP] PCP server (pmcd) proxy
27049
- #: - [UDP] PCP server (pmcd) proxy
27050
- pmcdproxy: 'AppType' = 44322, 'pmcdproxy', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
27055
+ #: - [TCP] PCP proxy (pmproxy)
27056
+ #: - [UDP] PCP proxy (pmproxy)
27057
+ pmproxy: 'AppType' = 44322, 'pmproxy', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
27051
27058
 
27052
27059
  #: [TCP] HTTP binding for Performance Co-Pilot client API
27053
27060
  pmwebapi: 'AppType' = 44323, 'pmwebapi', TransportProtocol.get('tcp')
@@ -28178,6 +28185,9 @@ class AppType(StrEnum):
28178
28185
  #: [N/A] EyeHome
28179
28186
  difi: 'AppType' = -1, 'difi', TransportProtocol.get('undefined')
28180
28187
 
28188
+ #: [TCP] Digital Electricity Transmitter
28189
+ digitalelectric: 'AppType' = -1, 'digitalelectric', TransportProtocol.get('tcp')
28190
+
28181
28191
  #: [N/A] DisConnect Peer to Peer Game Protocol
28182
28192
  disconnect: 'AppType' = -1, 'disconnect', TransportProtocol.get('undefined')
28183
28193
 
@@ -29482,6 +29492,9 @@ class AppType(StrEnum):
29482
29492
  #: [N/A] Rakket Client Protocol
29483
29493
  rakket: 'AppType' = -1, 'rakket', TransportProtocol.get('undefined')
29484
29494
 
29495
+ #: [N/A] Radicle peer to peer network
29496
+ radicle_node: 'AppType' = -1, 'radicle-node', TransportProtocol.get('undefined')
29497
+
29485
29498
  #: [N/A] RadioTAG: Event tagging for radio services
29486
29499
  radiotag: 'AppType' = -1, 'radiotag', TransportProtocol.get('undefined')
29487
29500
 
@@ -32329,7 +32342,10 @@ class AppType(StrEnum):
32329
32342
  if 24555 <= value <= 24576:
32330
32343
  #: [N/A] Unassigned
32331
32344
  return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
32332
- if 24578 <= value <= 24665:
32345
+ if 24578 <= value <= 24600:
32346
+ #: [N/A] Unassigned
32347
+ return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
32348
+ if 24602 <= value <= 24665:
32333
32349
  #: [N/A] Unassigned
32334
32350
  return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
32335
32351
  if 24667 <= value <= 24675:
@@ -68,9 +68,7 @@ class LinkType(IntEnum):
68
68
  #: [``DLT_ATM_RFC1483``] LLC/SNAP-encapsulated ATM
69
69
  ATM_RFC1483 = 100
70
70
 
71
- #: [``DLT_RAW``] Raw IP; the packet begins with an IPv4 or IPv6 header, with
72
- #: the version field of the header indicating whether it's an IPv4 or IPv6
73
- #: header.
71
+ #: [``DLT_RAW``] IPv4 or IPv6 packets with no link-layer header.
74
72
  RAW = 101
75
73
 
76
74
  #: [``DLT_C_HDLC``] Cisco PPP with HDLC framing.
@@ -472,10 +470,10 @@ class LinkType(IntEnum):
472
470
  #: metadata header.
473
471
  CAN_SOCKETCAN = 227
474
472
 
475
- #: [``DLT_IPV4``] Raw IPv4; the packet begins with an IPv4 header.
473
+ #: [``DLT_IPV4``] IPv4 packets with no link-layer header.
476
474
  IPV4 = 228
477
475
 
478
- #: [``DLT_IPV6``] Raw IPv6; the packet begins with an IPv6 header.
476
+ #: [``DLT_IPV6``] IPv6 packets with no link-layer header.
479
477
  IPV6 = 229
480
478
 
481
479
  #: [``DLT_IEEE802_15_4_NOFCS``] IEEE 802.15.4 packets without FCS.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pypcapkit
3
- Version: 1.3.5.post24
3
+ Version: 1.3.5.post29
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=lI2PqkloizlQAapx_tphkgrwBVtW3ykF0LlWqwaSlaA,4026
1
+ pcapkit/__init__.py,sha256=gl7MsKuH6jVh4qF5tdaaE1RV_xxsfUSGbV1gcSAXNWY,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
@@ -33,7 +33,7 @@ pcapkit/const/http/error_code.py,sha256=caVfNqmyXCGeLqbi8NSo45SBjp263E7pgoW9ENRO
33
33
  pcapkit/const/http/frame.py,sha256=4l8Uqk9PYfsmki51fYAliaK7rSpTZv-sJNrJNMfmO9w,2555
34
34
  pcapkit/const/http/method.py,sha256=x-7zi1JTrKyX6A84Eg1omsIG9RcBMPR8DDs97YWOQ6c,5011
35
35
  pcapkit/const/http/setting.py,sha256=Y6iPP1dP9yXzVU-3wERqIKi7ClnI2nht9Uogt4IcR4Y,3148
36
- pcapkit/const/http/status_code.py,sha256=blnXu5uqkVJPpUAkjGnVaz0U0w45tUdjS2KoKBmihmE,8945
36
+ pcapkit/const/http/status_code.py,sha256=WWNqpxoHmcsfObYNQ93wRkQi6KCKNWP-QxCW7A_jwlQ,8986
37
37
  pcapkit/const/ipv4/__init__.py,sha256=YSYTPDXlnQHsMsSpIzNIXN0Fdios7-w3dso2Qt6MK38,3089
38
38
  pcapkit/const/ipv4/classification_level.py,sha256=O5JyxOU_CPWzamy2pNnFBE8ALyUnUTcnX-iIKJEQXR8,1882
39
39
  pcapkit/const/ipv4/option_class.py,sha256=apHy6yQZbd--dak5gpfGKk27csuXBrY_nPkZSUpPIMQ,1527
@@ -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=qt6kOt8WytMLeYzVIHHHkTZQHfp6pThhgdpKebzQwBc,1435226
120
+ pcapkit/const/reg/apptype.py,sha256=ugi-Gz4a7-vEafEr9VdsqCRSNtPPpo6B3h_h0f23Xo4,1436046
121
121
  pcapkit/const/reg/ethertype.py,sha256=6Xz-MugXqQMc8hUHmkMMK_zeeYlkJ1Ql9Jtek_e3j1g,26564
122
- pcapkit/const/reg/linktype.py,sha256=0xjvfYGuVbHCFhsQyaQy_GVBPfgG-hRPm3cUFbKsfhw,23108
122
+ pcapkit/const/reg/linktype.py,sha256=llNFn8sZb1UMjWeFl3IrPgD_2U5Agwhp4OBtc09KQVc,22984
123
123
  pcapkit/const/reg/transtype.py,sha256=D-5u5RB8nl4RKXm9YlnuTinhbId0YzNQOXLITfP1N5Y,13010
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.post24.dist-info/licenses/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
462
- pypcapkit-1.3.5.post24.dist-info/METADATA,sha256=OR2gKg865CTOOU_1Rig-Q00_YNW3YqkhqOg3fvMFJeE,7754
463
- pypcapkit-1.3.5.post24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
464
- pypcapkit-1.3.5.post24.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
465
- pypcapkit-1.3.5.post24.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
466
- pypcapkit-1.3.5.post24.dist-info/RECORD,,
461
+ pypcapkit-1.3.5.post29.dist-info/licenses/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
462
+ pypcapkit-1.3.5.post29.dist-info/METADATA,sha256=z4cbmZATObuoa-dz9SRhFvwtisxlCPr3kxt2rOXRy6c,7754
463
+ pypcapkit-1.3.5.post29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
464
+ pypcapkit-1.3.5.post29.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
465
+ pypcapkit-1.3.5.post29.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
466
+ pypcapkit-1.3.5.post29.dist-info/RECORD,,