pypcapkit 1.3.5.post4__cp39-none-any.whl → 1.3.5.post7__cp39-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/ipv6/extension_header.py +3 -0
- pcapkit/const/reg/apptype.py +5 -2
- pcapkit/const/reg/transtype.py +4 -1
- {pypcapkit-1.3.5.post4.dist-info → pypcapkit-1.3.5.post7.dist-info}/METADATA +4 -2
- {pypcapkit-1.3.5.post4.dist-info → pypcapkit-1.3.5.post7.dist-info}/RECORD +10 -10
- {pypcapkit-1.3.5.post4.dist-info → pypcapkit-1.3.5.post7.dist-info}/WHEEL +1 -1
- {pypcapkit-1.3.5.post4.dist-info → pypcapkit-1.3.5.post7.dist-info}/LICENSE +0 -0
- {pypcapkit-1.3.5.post4.dist-info → pypcapkit-1.3.5.post7.dist-info}/entry_points.txt +0 -0
- {pypcapkit-1.3.5.post4.dist-info → pypcapkit-1.3.5.post7.dist-info}/top_level.txt +0 -0
pcapkit/__init__.py
CHANGED
@@ -45,6 +45,9 @@ class ExtensionHeader(IntEnum):
|
|
45
45
|
#: Shim6, Shim6 Protocol [:rfc:`5533`]
|
46
46
|
Shim6 = 140
|
47
47
|
|
48
|
+
#: BIT-EMU, Bit-stream Emulation [RFC-ietf-pals-ple-14]
|
49
|
+
BIT_EMU = 147
|
50
|
+
|
48
51
|
#: Use for experimentation and testing [:rfc:`3692`]
|
49
52
|
Use_for_experimentation_and_testing_253 = 253
|
50
53
|
|
pcapkit/const/reg/apptype.py
CHANGED
@@ -12479,7 +12479,7 @@ class AppType(StrEnum):
|
|
12479
12479
|
|
12480
12480
|
#: - [TCP] Net Assistant
|
12481
12481
|
#: - [UDP] Net Assistant
|
12482
|
-
|
12482
|
+
net_assistant: 'AppType' = 3283, 'net-assistant', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
12483
12483
|
|
12484
12484
|
#: - [TCP] 4Talk
|
12485
12485
|
#: - [UDP] 4Talk
|
@@ -14060,7 +14060,7 @@ class AppType(StrEnum):
|
|
14060
14060
|
|
14061
14061
|
#: - [TCP] Newton Dock
|
14062
14062
|
#: - [UDP] Newton Dock
|
14063
|
-
|
14063
|
+
newton_dock: 'AppType' = 3679, 'newton-dock', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
14064
14064
|
|
14065
14065
|
#: - [TCP] NPDS Tracker
|
14066
14066
|
#: - [UDP] NPDS Tracker
|
@@ -29298,6 +29298,9 @@ class AppType(StrEnum):
|
|
29298
29298
|
#: - [UDP] Local and remote file transfers
|
29299
29299
|
payload_app: 'AppType' = -1, 'payload-app', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
29300
29300
|
|
29301
|
+
#: [TCP] Peblar EV charger
|
29302
|
+
pblr: 'AppType' = -1, 'pblr', TransportProtocol.get('tcp')
|
29303
|
+
|
29301
29304
|
#: [N/A] Horowitz Key Protocol (HKP)
|
29302
29305
|
pgpkey_hkp: 'AppType' = -1, 'pgpkey-hkp', TransportProtocol.get('undefined')
|
29303
29306
|
|
pcapkit/const/reg/transtype.py
CHANGED
@@ -482,6 +482,9 @@ class TransType(IntEnum):
|
|
482
482
|
#: Homa [HomaModule][John Ousterhout]
|
483
483
|
Homa = 146
|
484
484
|
|
485
|
+
#: Bit-stream Emulation [RFC-ietf-pals-ple-14]
|
486
|
+
BIT_EMU = 147
|
487
|
+
|
485
488
|
#: Use for experimentation and testing [:rfc:`3692`]
|
486
489
|
Use_for_experimentation_and_testing_253 = 253
|
487
490
|
|
@@ -517,7 +520,7 @@ class TransType(IntEnum):
|
|
517
520
|
"""
|
518
521
|
if not (isinstance(value, int) and 0 <= value <= 255):
|
519
522
|
raise ValueError('%r is not a valid %s' % (value, cls.__name__))
|
520
|
-
if
|
523
|
+
if 148 <= value <= 252:
|
521
524
|
#: Unassigned [Internet Assigned Numbers Authority]
|
522
525
|
return extend_enum(cls, 'Unassigned_%d' % value, value)
|
523
526
|
return super()._missing_(value)
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: pypcapkit
|
3
|
-
Version: 1.3.5.
|
3
|
+
Version: 1.3.5.post7
|
4
4
|
Summary: PyPCAPKit: comprehensive network packet analysis library
|
5
5
|
Author-email: Jarry Shaw <jarryshaw@icloud.com>
|
6
6
|
Maintainer: Jarry Shaw
|
@@ -74,6 +74,8 @@ Requires-Dist: sphinx-opengraph; extra == "docs"
|
|
74
74
|
Requires-Dist: sphinx-copybutton; extra == "docs"
|
75
75
|
Requires-Dist: typing-extensions; extra == "docs"
|
76
76
|
Requires-Dist: mypy-extensions; extra == "docs"
|
77
|
+
Dynamic: description
|
78
|
+
Dynamic: description-content-type
|
77
79
|
|
78
80
|
PyPCAPKit - Comprehensive Network Packet Analysis Library
|
79
81
|
=========================================================
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pcapkit/__init__.py,sha256=
|
1
|
+
pcapkit/__init__.py,sha256=sB4ggYco1pMJztuwWr2xDaXocrHIx9EEEYEitLt-zMs,4025
|
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
|
@@ -48,7 +48,7 @@ pcapkit/const/ipv4/tos_rel.py,sha256=GaO7ppOAjmRD3EDTDvyMXt_CFybFjwNZpegQBS1lgkk
|
|
48
48
|
pcapkit/const/ipv4/tos_thr.py,sha256=OdgGe1kN_XLbo5VDmLh3DKI58Nrz1MhwFVChFYt70xI,1489
|
49
49
|
pcapkit/const/ipv4/ts_flag.py,sha256=RKrmdR-bX0jh2SwyG45Fmoa6jfxj55IIKRocPHCSpHw,1418
|
50
50
|
pcapkit/const/ipv6/__init__.py,sha256=SFIuEU94lAbuT-DRqcKsCLQ2Ij3-FDWRwPneVRFtvPg,2819
|
51
|
-
pcapkit/const/ipv6/extension_header.py,sha256=
|
51
|
+
pcapkit/const/ipv6/extension_header.py,sha256=w-kwZuS2KuEmEWtWv16KdNi52t5WRUf0riN_rTvL3Yc,1869
|
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
|
@@ -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=
|
120
|
+
pcapkit/const/reg/apptype.py,sha256=VDxwGlpzVisqExAH3Yto4h3FutA6JBCpxA-gQs1_qv8,1433095
|
121
121
|
pcapkit/const/reg/ethertype.py,sha256=6Xz-MugXqQMc8hUHmkMMK_zeeYlkJ1Ql9Jtek_e3j1g,26564
|
122
122
|
pcapkit/const/reg/linktype.py,sha256=k7SNbH6tfp1NpG9LDiUkfTdF1-7tyhM8u7hiKKHJ4Jo,33981
|
123
|
-
pcapkit/const/reg/transtype.py,sha256=
|
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
|
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.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.post7.dist-info/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
|
462
|
+
pypcapkit-1.3.5.post7.dist-info/METADATA,sha256=QrAHKkvlyKf-mP7GVNHeu4rSQCrMhgNN5UsQB_CFVng,7731
|
463
|
+
pypcapkit-1.3.5.post7.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
464
|
+
pypcapkit-1.3.5.post7.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
|
465
|
+
pypcapkit-1.3.5.post7.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
|
466
|
+
pypcapkit-1.3.5.post7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|