pypcapkit 1.3.5.post19__cp311-none-any.whl → 1.3.5.post26__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.
- pcapkit/__init__.py +1 -1
- pcapkit/const/ipv6/extension_header.py +1 -1
- pcapkit/const/ipv6/option.py +1 -2
- pcapkit/const/ipv6/router_alert.py +1 -1
- pcapkit/const/reg/apptype.py +34 -6
- pcapkit/const/reg/transtype.py +1 -1
- {pypcapkit-1.3.5.post19.dist-info → pypcapkit-1.3.5.post26.dist-info}/METADATA +1 -1
- {pypcapkit-1.3.5.post19.dist-info → pypcapkit-1.3.5.post26.dist-info}/RECORD +12 -12
- {pypcapkit-1.3.5.post19.dist-info → pypcapkit-1.3.5.post26.dist-info}/WHEEL +0 -0
- {pypcapkit-1.3.5.post19.dist-info → pypcapkit-1.3.5.post26.dist-info}/entry_points.txt +0 -0
- {pypcapkit-1.3.5.post19.dist-info → pypcapkit-1.3.5.post26.dist-info}/licenses/LICENSE +0 -0
- {pypcapkit-1.3.5.post19.dist-info → pypcapkit-1.3.5.post26.dist-info}/top_level.txt +0 -0
pcapkit/__init__.py
CHANGED
@@ -45,7 +45,7 @@ class ExtensionHeader(IntEnum):
|
|
45
45
|
#: Shim6, Shim6 Protocol [:rfc:`5533`]
|
46
46
|
Shim6 = 140
|
47
47
|
|
48
|
-
#: BIT-EMU, Bit-stream Emulation [
|
48
|
+
#: BIT-EMU, Bit-stream Emulation [:rfc:`9801`]
|
49
49
|
BIT_EMU = 147
|
50
50
|
|
51
51
|
#: Use for experimentation and testing [:rfc:`3692`]
|
pcapkit/const/ipv6/option.py
CHANGED
@@ -36,8 +36,7 @@ class Option(IntEnum):
|
|
36
36
|
#: Tunnel Encapsulation Limit [:rfc:`2473`]
|
37
37
|
Tunnel_Encapsulation_Limit = 0x04
|
38
38
|
|
39
|
-
#: Router Alert (DEPRECATED for New Protocols) [:rfc:`2711`][
|
40
|
-
#: deprecate-router-alert-13]
|
39
|
+
#: Router Alert (DEPRECATED for New Protocols) [:rfc:`2711`][:rfc:`9805`]
|
41
40
|
Router_Alert = 0x05
|
42
41
|
|
43
42
|
#: Quick-Start [:rfc:`4782`][RFC Errata 2034]
|
@@ -261,6 +261,6 @@ class RouterAlert(IntEnum):
|
|
261
261
|
#: Unassigned
|
262
262
|
return extend_enum(cls, 'Unassigned_%d' % value, value)
|
263
263
|
if 65503 <= value <= 65534:
|
264
|
-
#: Reserved [
|
264
|
+
#: Reserved [:rfc:`9805`]
|
265
265
|
return extend_enum(cls, 'Reserved_%d' % value, value)
|
266
266
|
return super()._missing_(value)
|
pcapkit/const/reg/apptype.py
CHANGED
@@ -1170,6 +1170,13 @@ class AppType(StrEnum):
|
|
1170
1170
|
#: - [UDP] K-BLOCK
|
1171
1171
|
k_block: 'AppType' = 287, 'k-block', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
1172
1172
|
|
1173
|
+
#: [TCP] TLS Secure Login Host Protocol (TACACSS) [RFC-ietf-opsawg-tacacs-
|
1174
|
+
#: tls13-24]
|
1175
|
+
tacacss: 'AppType' = 300, 'tacacss', TransportProtocol.get('tcp')
|
1176
|
+
|
1177
|
+
#: [UDP] Reserved
|
1178
|
+
reserved_300: 'AppType' = 300, 'reserved', TransportProtocol.get('udp')
|
1179
|
+
|
1173
1180
|
#: - [TCP] Novastor Backup
|
1174
1181
|
#: - [UDP] Novastor Backup
|
1175
1182
|
novastorbakcup: 'AppType' = 308, 'novastorbakcup', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
@@ -2078,11 +2085,11 @@ class AppType(StrEnum):
|
|
2078
2085
|
appleqtcsrvr: 'AppType' = 545, 'appleqtcsrvr', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
2079
2086
|
|
2080
2087
|
#: - [TCP] DHCPv6 Client
|
2081
|
-
#: - [UDP] DHCPv6 Client [
|
2088
|
+
#: - [UDP] DHCPv6 Client [RFC-ietf-dhc-rfc8415bis-12]
|
2082
2089
|
dhcpv6_client: 'AppType' = 546, 'dhcpv6-client', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
2083
2090
|
|
2084
2091
|
#: - [TCP] DHCPv6 Server [:rfc:`5460`]
|
2085
|
-
#: - [UDP] DHCPv6 Server [
|
2092
|
+
#: - [UDP] DHCPv6 Server [RFC-ietf-dhc-rfc8415bis-12]
|
2086
2093
|
dhcpv6_server: 'AppType' = 547, 'dhcpv6-server', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
2087
2094
|
|
2088
2095
|
#: - [TCP] AFP over TCP
|
@@ -17535,6 +17542,12 @@ class AppType(StrEnum):
|
|
17535
17542
|
#: - [UDP] IP Routable Unified Bus
|
17536
17543
|
unified_bus: 'AppType' = 4792, 'unified-bus', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
17537
17544
|
|
17545
|
+
#: [TCP] Reserved
|
17546
|
+
reserved_4793: 'AppType' = 4793, 'reserved', TransportProtocol.get('tcp')
|
17547
|
+
|
17548
|
+
#: [UDP] Ultra Ethernet Transport
|
17549
|
+
uet: 'AppType' = 4793, 'uet', TransportProtocol.get('udp')
|
17550
|
+
|
17538
17551
|
#: - [TCP] Icona Instant Messenging System
|
17539
17552
|
#: - [UDP] Icona Instant Messenging System
|
17540
17553
|
iims: 'AppType' = 4800, 'iims', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
@@ -28165,6 +28178,9 @@ class AppType(StrEnum):
|
|
28165
28178
|
#: [N/A] EyeHome
|
28166
28179
|
difi: 'AppType' = -1, 'difi', TransportProtocol.get('undefined')
|
28167
28180
|
|
28181
|
+
#: [TCP] Digital Electricity Transmitter
|
28182
|
+
digitalelectric: 'AppType' = -1, 'digitalelectric', TransportProtocol.get('tcp')
|
28183
|
+
|
28168
28184
|
#: [N/A] DisConnect Peer to Peer Game Protocol
|
28169
28185
|
disconnect: 'AppType' = -1, 'disconnect', TransportProtocol.get('undefined')
|
28170
28186
|
|
@@ -28208,10 +28224,10 @@ class AppType(StrEnum):
|
|
28208
28224
|
#: [TCP] DNS Dynamic Update Service over TLS [:rfc:`6281`]
|
28209
28225
|
dns_update_tls: 'AppType' = -1, 'dns-update-tls', TransportProtocol.get('tcp')
|
28210
28226
|
|
28211
|
-
#: [TCP] DNS-Based Service Discovery [
|
28227
|
+
#: [TCP] DNS-Based Service Discovery [:rfc:`9665`]
|
28212
28228
|
dnssd_srp: 'AppType' = -1, 'dnssd-srp', TransportProtocol.get('tcp')
|
28213
28229
|
|
28214
|
-
#: [TCP] DNS-Based Service Discovery (TLS) [
|
28230
|
+
#: [TCP] DNS-Based Service Discovery (TLS) [:rfc:`9665`]
|
28215
28231
|
dnssd_srp_tls: 'AppType' = -1, 'dnssd-srp-tls', TransportProtocol.get('tcp')
|
28216
28232
|
|
28217
28233
|
#: [N/A] Roar (Death of Productivity)
|
@@ -28472,6 +28488,9 @@ class AppType(StrEnum):
|
|
28472
28488
|
#: [TCP] Groovesquid Democratic Music Control Protocol
|
28473
28489
|
groovesquid: 'AppType' = -1, 'groovesquid', TransportProtocol.get('tcp')
|
28474
28490
|
|
28491
|
+
#: [TCP] Mobile device cluster
|
28492
|
+
groupthink: 'AppType' = -1, 'groupthink', TransportProtocol.get('tcp')
|
28493
|
+
|
28475
28494
|
#: [N/A] Growl
|
28476
28495
|
growl: 'AppType' = -1, 'growl', TransportProtocol.get('undefined')
|
28477
28496
|
|
@@ -29466,6 +29485,9 @@ class AppType(StrEnum):
|
|
29466
29485
|
#: [N/A] Rakket Client Protocol
|
29467
29486
|
rakket: 'AppType' = -1, 'rakket', TransportProtocol.get('undefined')
|
29468
29487
|
|
29488
|
+
#: [N/A] Radicle peer to peer network
|
29489
|
+
radicle_node: 'AppType' = -1, 'radicle-node', TransportProtocol.get('undefined')
|
29490
|
+
|
29469
29491
|
#: [N/A] RadioTAG: Event tagging for radio services
|
29470
29492
|
radiotag: 'AppType' = -1, 'radiotag', TransportProtocol.get('undefined')
|
29471
29493
|
|
@@ -29739,6 +29761,9 @@ class AppType(StrEnum):
|
|
29739
29761
|
#: [TCP] SHIP (Smart Home IP)
|
29740
29762
|
ship: 'AppType' = -1, 'ship', TransportProtocol.get('tcp')
|
29741
29763
|
|
29764
|
+
#: [TCP] Authenticated SHIP pairing request
|
29765
|
+
shippairing: 'AppType' = -1, 'shippairing', TransportProtocol.get('tcp')
|
29766
|
+
|
29742
29767
|
#: [N/A] Swift Office Ships
|
29743
29768
|
shipsgm: 'AppType' = -1, 'shipsgm', TransportProtocol.get('undefined')
|
29744
29769
|
|
@@ -30486,7 +30511,10 @@ class AppType(StrEnum):
|
|
30486
30511
|
if 272 <= value <= 279:
|
30487
30512
|
#: [N/A] Unassigned
|
30488
30513
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30489
|
-
if 288 <= value <=
|
30514
|
+
if 288 <= value <= 299:
|
30515
|
+
#: [N/A] Unassigned
|
30516
|
+
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30517
|
+
if 301 <= value <= 307:
|
30490
30518
|
#: [N/A] Unassigned
|
30491
30519
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30492
30520
|
if 325 <= value <= 332:
|
@@ -30636,7 +30664,7 @@ class AppType(StrEnum):
|
|
30636
30664
|
if 4775 <= value <= 4783:
|
30637
30665
|
#: [N/A] Unassigned
|
30638
30666
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30639
|
-
if
|
30667
|
+
if 4794 <= value <= 4799:
|
30640
30668
|
#: [N/A] Unassigned
|
30641
30669
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30642
30670
|
if 4805 <= value <= 4826:
|
pcapkit/const/reg/transtype.py
CHANGED
@@ -482,7 +482,7 @@ class TransType(IntEnum):
|
|
482
482
|
#: Homa [HomaModule][John Ousterhout]
|
483
483
|
Homa = 146
|
484
484
|
|
485
|
-
#: Bit-stream Emulation [
|
485
|
+
#: Bit-stream Emulation [:rfc:`9801`]
|
486
486
|
BIT_EMU = 147
|
487
487
|
|
488
488
|
#: Use for experimentation and testing [:rfc:`3692`]
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pcapkit/__init__.py,sha256=
|
1
|
+
pcapkit/__init__.py,sha256=qbDBmxHWXFUeQTVfzRj5stSGG0N3BXMxf76ev3Sna1g,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
|
@@ -48,11 +48,11 @@ 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=
|
52
|
-
pcapkit/const/ipv6/option.py,sha256=
|
51
|
+
pcapkit/const/ipv6/extension_header.py,sha256=y3X4MT3mCSyfqLZwZv8Oi5YTFpkQu1ze-FYyKPQP_Zo,1860
|
52
|
+
pcapkit/const/ipv6/option.py,sha256=J__wlJVB7XLKDVjox3_y6W_oF-b2i18oW5uzmUzdVpA,3811
|
53
53
|
pcapkit/const/ipv6/option_action.py,sha256=imkDogX8I3sVqS3cCHgDc20n3Q_VWudimEjbV9tNFQU,1504
|
54
54
|
pcapkit/const/ipv6/qs_function.py,sha256=fvhFc8MdaZwtD6_NgCTR5NlKfQ4QUh5rEzecEnUn3BY,1447
|
55
|
-
pcapkit/const/ipv6/router_alert.py,sha256=
|
55
|
+
pcapkit/const/ipv6/router_alert.py,sha256=RfNjlUJofhVFdlm45khC2T8C20YOf--eIgJ8DfDre8A,8788
|
56
56
|
pcapkit/const/ipv6/routing.py,sha256=tR6i4irkLDqWjAwjNg0ZXno8c72loCTnVAhiAGXQB-I,2143
|
57
57
|
pcapkit/const/ipv6/seed_id.py,sha256=TtZaMyaXLhwLiB2rrakxWNIGeFv7lHchAy70C7F3YE0,1529
|
58
58
|
pcapkit/const/ipv6/smf_dpd_mode.py,sha256=UQZ0eSNBgYn3eRzuaiukXq5PYe8LFJw3VU9MvYRpERM,1689
|
@@ -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=nTiv8LEArs0ODAtZ0i14zlTDPCdrVJpbT2g6p29ywnM,1435485
|
121
121
|
pcapkit/const/reg/ethertype.py,sha256=6Xz-MugXqQMc8hUHmkMMK_zeeYlkJ1Ql9Jtek_e3j1g,26564
|
122
122
|
pcapkit/const/reg/linktype.py,sha256=0xjvfYGuVbHCFhsQyaQy_GVBPfgG-hRPm3cUFbKsfhw,23108
|
123
|
-
pcapkit/const/reg/transtype.py,sha256=
|
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
|
126
126
|
pcapkit/const/tcp/flags.py,sha256=hT3El099DguAyXqHj4CFDx6TJNCTPzJNnsBRO9qwMGc,1744
|
@@ -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.post26.dist-info/licenses/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
|
462
|
+
pypcapkit-1.3.5.post26.dist-info/METADATA,sha256=coiPFnO0ANkvDLC71H_WJ_sOA_1uNihyw0H47s3YORc,7754
|
463
|
+
pypcapkit-1.3.5.post26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
464
|
+
pypcapkit-1.3.5.post26.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
|
465
|
+
pypcapkit-1.3.5.post26.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
|
466
|
+
pypcapkit-1.3.5.post26.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|