pypcapkit 1.3.5.post29__cp311-none-any.whl → 1.3.5.post31__cp311-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 CHANGED
@@ -121,4 +121,4 @@ __all__ = [
121
121
  ]
122
122
 
123
123
  #: version number
124
- __version__ = '1.3.5.post29'
124
+ __version__ = '1.3.5.post31'
@@ -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] NETCONF over BEEP [:rfc:`4744`]
2958
- #: - [UDP] NETCONF over BEEP [:rfc:`4744`]
2959
- netconf_beep: 'AppType' = 831, 'netconf-beep', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2957
+ #: - [TCP] Reserved
2958
+ #: - [UDP] Reserved
2959
+ reserved_831: 'AppType' = 831, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2960
2960
 
2961
- #: - [TCP] NETCONF for SOAP over HTTPS [:rfc:`4743`]
2962
- #: - [UDP] NETCONF for SOAP over HTTPS [:rfc:`4743`]
2963
- netconfsoaphttp: 'AppType' = 832, 'netconfsoaphttp', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2961
+ #: - [TCP] Reserved
2962
+ #: - [UDP] Reserved
2963
+ reserved_832: 'AppType' = 832, 'reserved', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
2964
2964
 
2965
- #: - [TCP] NETCONF for SOAP over BEEP [:rfc:`4743`]
2966
- #: - [UDP] NETCONF for SOAP over BEEP [:rfc:`4743`]
2967
- netconfsoapbeep: 'AppType' = 833, 'netconfsoapbeep', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
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 <= 21552:
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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pypcapkit
3
- Version: 1.3.5.post29
3
+ Version: 1.3.5.post31
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=gl7MsKuH6jVh4qF5tdaaE1RV_xxsfUSGbV1gcSAXNWY,4026
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=ugi-Gz4a7-vEafEr9VdsqCRSNtPPpo6B3h_h0f23Xo4,1436046
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.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,,
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,,