pypcapkit 1.3.5.post29__cp312-none-any.whl → 1.3.5.post31__cp312-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.
Potentially problematic release.
This version of pypcapkit might be problematic. Click here for more details.
- pcapkit/__init__.py +1 -1
- pcapkit/const/reg/apptype.py +30 -10
- {pypcapkit-1.3.5.post29.dist-info → pypcapkit-1.3.5.post31.dist-info}/METADATA +1 -1
- {pypcapkit-1.3.5.post29.dist-info → pypcapkit-1.3.5.post31.dist-info}/RECORD +8 -8
- {pypcapkit-1.3.5.post29.dist-info → pypcapkit-1.3.5.post31.dist-info}/WHEEL +0 -0
- {pypcapkit-1.3.5.post29.dist-info → pypcapkit-1.3.5.post31.dist-info}/entry_points.txt +0 -0
- {pypcapkit-1.3.5.post29.dist-info → pypcapkit-1.3.5.post31.dist-info}/licenses/LICENSE +0 -0
- {pypcapkit-1.3.5.post29.dist-info → pypcapkit-1.3.5.post31.dist-info}/top_level.txt +0 -0
pcapkit/__init__.py
CHANGED
pcapkit/const/reg/apptype.py
CHANGED
|
@@ -2954,17 +2954,17 @@ class AppType(StrEnum):
|
|
|
2954
2954
|
#: - [UDP] NETCONF over SSH [:rfc:`6242`]
|
|
2955
2955
|
netconf_ssh: 'AppType' = 830, 'netconf-ssh', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
|
2956
2956
|
|
|
2957
|
-
#: - [TCP]
|
|
2958
|
-
#: - [UDP]
|
|
2959
|
-
|
|
2957
|
+
#: - [TCP] Reserved
|
|
2958
|
+
#: - [UDP] Reserved
|
|
2959
|
+
reserved_831: 'AppType' = 831, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
|
2960
2960
|
|
|
2961
|
-
#: - [TCP]
|
|
2962
|
-
#: - [UDP]
|
|
2963
|
-
|
|
2961
|
+
#: - [TCP] Reserved
|
|
2962
|
+
#: - [UDP] Reserved
|
|
2963
|
+
reserved_832: 'AppType' = 832, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
|
2964
2964
|
|
|
2965
|
-
#: - [TCP]
|
|
2966
|
-
#: - [UDP]
|
|
2967
|
-
|
|
2965
|
+
#: - [TCP] Reserved
|
|
2966
|
+
#: - [UDP] Reserved
|
|
2967
|
+
reserved_833: 'AppType' = 833, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
|
2968
2968
|
|
|
2969
2969
|
#: - [TCP] dhcp-failover 2
|
|
2970
2970
|
#: - [UDP] dhcp-failover 2
|
|
@@ -25752,6 +25752,12 @@ class AppType(StrEnum):
|
|
|
25752
25752
|
#: [UDP] Reserved
|
|
25753
25753
|
reserved_21221: 'AppType' = 21221, 'reserved', TransportProtocol.get('udp')
|
|
25754
25754
|
|
|
25755
|
+
#: [TCP] Xahau P2P network protocol [https://xahau.network]
|
|
25756
|
+
xahaud: 'AppType' = 21337, 'xahaud', TransportProtocol.get('tcp')
|
|
25757
|
+
|
|
25758
|
+
#: [UDP] Reserved
|
|
25759
|
+
reserved_21337: 'AppType' = 21337, 'reserved', TransportProtocol.get('udp')
|
|
25760
|
+
|
|
25755
25761
|
#: [TCP] Raima RDM TFS
|
|
25756
25762
|
rdm_tfs: 'AppType' = 21553, 'rdm-tfs', TransportProtocol.get('tcp')
|
|
25757
25763
|
|
|
@@ -27488,6 +27494,17 @@ class AppType(StrEnum):
|
|
|
27488
27494
|
#: [N/A] Remote Job Service
|
|
27489
27495
|
netrjs: 'AppType' = -1, 'netrjs', TransportProtocol.get('undefined')
|
|
27490
27496
|
|
|
27497
|
+
#: [N/A] NETCONF over BEEP [:rfc:`4744`][RFC-ietf-netconf-port-numbers-07]
|
|
27498
|
+
netconf_beep: 'AppType' = -1, 'netconf-beep', TransportProtocol.get('undefined')
|
|
27499
|
+
|
|
27500
|
+
#: [N/A] NETCONF for SOAP over BEEP [:rfc:`4743`][RFC-ietf-netconf-port-
|
|
27501
|
+
#: numbers-07]
|
|
27502
|
+
netconfsoapbeep: 'AppType' = -1, 'netconfsoapbeep', TransportProtocol.get('undefined')
|
|
27503
|
+
|
|
27504
|
+
#: [N/A] NETCONF for SOAP over HTTPS [:rfc:`4743`][RFC-ietf-netconf-port-
|
|
27505
|
+
#: numbers-07]
|
|
27506
|
+
netconfsoaphttp: 'AppType' = -1, 'netconfsoaphttp', TransportProtocol.get('undefined')
|
|
27507
|
+
|
|
27491
27508
|
#: [N/A] A File Access Protocol
|
|
27492
27509
|
nfile: 'AppType' = -1, 'nfile', TransportProtocol.get('undefined')
|
|
27493
27510
|
|
|
@@ -32237,7 +32254,10 @@ class AppType(StrEnum):
|
|
|
32237
32254
|
if 21214 <= value <= 21220:
|
|
32238
32255
|
#: [N/A] Unassigned
|
|
32239
32256
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
|
32240
|
-
if 21222 <= value <=
|
|
32257
|
+
if 21222 <= value <= 21336:
|
|
32258
|
+
#: [N/A] Unassigned
|
|
32259
|
+
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
|
32260
|
+
if 21338 <= value <= 21552:
|
|
32241
32261
|
#: [N/A] Unassigned
|
|
32242
32262
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
|
32243
32263
|
if 21555 <= value <= 21589:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pcapkit/__init__.py,sha256=
|
|
1
|
+
pcapkit/__init__.py,sha256=Xhx7dRZPmcZOg5MlcAKa2z0UHbKL4lcYsLgi3YTGDV8,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
|
|
@@ -117,7 +117,7 @@ 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=AsKp6DzIlDuvquunvmtbH4lRxDi3-3iy3Dn5jaPPuCM,1436812
|
|
121
121
|
pcapkit/const/reg/ethertype.py,sha256=6Xz-MugXqQMc8hUHmkMMK_zeeYlkJ1Ql9Jtek_e3j1g,26564
|
|
122
122
|
pcapkit/const/reg/linktype.py,sha256=llNFn8sZb1UMjWeFl3IrPgD_2U5Agwhp4OBtc09KQVc,22984
|
|
123
123
|
pcapkit/const/reg/transtype.py,sha256=D-5u5RB8nl4RKXm9YlnuTinhbId0YzNQOXLITfP1N5Y,13010
|
|
@@ -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.post31.dist-info/licenses/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
|
|
462
|
+
pypcapkit-1.3.5.post31.dist-info/METADATA,sha256=b9M-2KEhIQ8waFzox9WiD-nsZdjTwHQVUYTrMRIyGLQ,7754
|
|
463
|
+
pypcapkit-1.3.5.post31.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
464
|
+
pypcapkit-1.3.5.post31.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
|
|
465
|
+
pypcapkit-1.3.5.post31.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
|
|
466
|
+
pypcapkit-1.3.5.post31.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|