pypcapkit 1.3.1.post26__cp310-none-any.whl → 1.3.1.post28__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.post26'
126
+ __version__ = '1.3.1.post28'
@@ -29234,6 +29234,9 @@ class AppType(StrEnum):
29234
29234
  #: [N/A] oprofile server protocol
29235
29235
  oprofile: 'AppType' = -1, 'oprofile', TransportProtocol.get('undefined')
29236
29236
 
29237
+ #: [TCP] ORO Core server REST configuration and control API
29238
+ oro: 'AppType' = -1, 'oro', TransportProtocol.get('tcp')
29239
+
29237
29240
  #: [UDP] Open Sound Control Interface Transfer
29238
29241
  oscit: 'AppType' = -1, 'oscit', TransportProtocol.get('udp')
29239
29242
 
@@ -479,6 +479,9 @@ class TransType(IntEnum):
479
479
  #: Network Service Header [:rfc:`9491`]
480
480
  NSH = 145
481
481
 
482
+ #: Homa [HomaModule][John Ousterhout]
483
+ Homa = 146
484
+
482
485
  #: Use for experimentation and testing [:rfc:`3692`]
483
486
  Use_for_experimentation_and_testing_253 = 253
484
487
 
@@ -514,7 +517,7 @@ class TransType(IntEnum):
514
517
  """
515
518
  if not (isinstance(value, int) and 0 <= value <= 255):
516
519
  raise ValueError('%r is not a valid %s' % (value, cls.__name__))
517
- if 146 <= value <= 252:
520
+ if 147 <= value <= 252:
518
521
  #: Unassigned [Internet Assigned Numbers Authority]
519
522
  return extend_enum(cls, 'Unassigned_%d' % value, value)
520
523
  return super()._missing_(value)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypcapkit
3
- Version: 1.3.1.post26
3
+ Version: 1.3.1.post28
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=zfU4DO1Z0LmHvWxftx9eW2U62Ghj73-6v1cIPaXNxvg,4098
1
+ pcapkit/__init__.py,sha256=6aHJGhg9HxPbaQ11FR4-r3svr4VcXi8QCjl-sQOMyjU,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
@@ -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=VUtq0jpNH5YWQjSZXHH1lLrddJ4dBMWMNBZapTg1BMw,1431414
120
+ pcapkit/const/reg/apptype.py,sha256=OyGXkycikojZDpoaaLsCMglEA3oWwVFbfIa9VeCFeHg,1431540
121
121
  pcapkit/const/reg/ethertype.py,sha256=6Xz-MugXqQMc8hUHmkMMK_zeeYlkJ1Ql9Jtek_e3j1g,26564
122
122
  pcapkit/const/reg/linktype.py,sha256=WU5JvrvjuvWZbdcZaVrb5pGzUEFlS0aTNBZNXa-93Os,34895
123
- pcapkit/const/reg/transtype.py,sha256=Y5Ytz6UOXrMHft3HXFRKS5JRZpCrlLi9XIzSh_2Gx1s,12888
123
+ pcapkit/const/reg/transtype.py,sha256=ub1J9FMvhg4DQqmseg2bp950HnCpkEUqGq5gDdpQusk,12946
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.1.post26.dist-info/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
462
- pypcapkit-1.3.1.post26.dist-info/METADATA,sha256=vgVAOhHL1j_K4wnz9lhfpX2vI6kDfI3NUOifJDD4aTY,7705
463
- pypcapkit-1.3.1.post26.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
464
- pypcapkit-1.3.1.post26.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
465
- pypcapkit-1.3.1.post26.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
466
- pypcapkit-1.3.1.post26.dist-info/RECORD,,
461
+ pypcapkit-1.3.1.post28.dist-info/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
462
+ pypcapkit-1.3.1.post28.dist-info/METADATA,sha256=bW0XgVALhBGoDpR4hIX9-a2lutzhsw0Y04UReZDe428,7705
463
+ pypcapkit-1.3.1.post28.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
464
+ pypcapkit-1.3.1.post28.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
465
+ pypcapkit-1.3.1.post28.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
466
+ pypcapkit-1.3.1.post28.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5