pypcapkit 1.3.5.post17__pp38-none-any.whl → 1.3.5.post21__pp38-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/ftp/return_code.py +3 -3
- pcapkit/const/ipv6/option.py +2 -1
- pcapkit/const/ipv6/router_alert.py +2 -2
- pcapkit/const/reg/apptype.py +21 -6
- {pypcapkit-1.3.5.post17.dist-info → pypcapkit-1.3.5.post21.dist-info}/METADATA +1 -1
- {pypcapkit-1.3.5.post17.dist-info → pypcapkit-1.3.5.post21.dist-info}/RECORD +11 -11
- {pypcapkit-1.3.5.post17.dist-info → pypcapkit-1.3.5.post21.dist-info}/LICENSE +0 -0
- {pypcapkit-1.3.5.post17.dist-info → pypcapkit-1.3.5.post21.dist-info}/WHEEL +0 -0
- {pypcapkit-1.3.5.post17.dist-info → pypcapkit-1.3.5.post21.dist-info}/entry_points.txt +0 -0
- {pypcapkit-1.3.5.post17.dist-info → pypcapkit-1.3.5.post21.dist-info}/top_level.txt +0 -0
pcapkit/__init__.py
CHANGED
pcapkit/const/ftp/return_code.py
CHANGED
@@ -190,9 +190,9 @@ class ReturnCode(IntEnum):
|
|
190
190
|
#: Username okay, password okay. Challenge is ". . . . ".
|
191
191
|
CODE_336: 'ReturnCode' = 336, 'Username okay, password okay.'
|
192
192
|
|
193
|
-
#: Service available, closing control connection. This may be a reply to
|
194
|
-
#: command if the service knows it must shut down.
|
195
|
-
CODE_421: 'ReturnCode' = 421, 'Service available, closing control connection.'
|
193
|
+
#: Service NOT available, closing control connection. This may be a reply to
|
194
|
+
#: any command if the service knows it must shut down.
|
195
|
+
CODE_421: 'ReturnCode' = 421, 'Service NOT available, closing control connection.'
|
196
196
|
|
197
197
|
#: Can't open data connection.
|
198
198
|
CODE_425: 'ReturnCode' = 425, "Can't open data connection."
|
pcapkit/const/ipv6/option.py
CHANGED
@@ -36,7 +36,8 @@ class Option(IntEnum):
|
|
36
36
|
#: Tunnel Encapsulation Limit [:rfc:`2473`]
|
37
37
|
Tunnel_Encapsulation_Limit = 0x04
|
38
38
|
|
39
|
-
#: Router Alert [:rfc:`2711`]
|
39
|
+
#: Router Alert (DEPRECATED for New Protocols) [:rfc:`2711`][RFC-ietf-6man-
|
40
|
+
#: deprecate-router-alert-13]
|
40
41
|
Router_Alert = 0x05
|
41
42
|
|
42
43
|
#: 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
|
265
|
-
return extend_enum(cls, '
|
264
|
+
#: Reserved [RFC-ietf-6man-deprecate-router-alert-13]
|
265
|
+
return extend_enum(cls, 'Reserved_%d' % value, value)
|
266
266
|
return super()._missing_(value)
|
pcapkit/const/reg/apptype.py
CHANGED
@@ -2078,11 +2078,11 @@ class AppType(StrEnum):
|
|
2078
2078
|
appleqtcsrvr: 'AppType' = 545, 'appleqtcsrvr', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
2079
2079
|
|
2080
2080
|
#: - [TCP] DHCPv6 Client
|
2081
|
-
#: - [UDP] DHCPv6 Client [
|
2081
|
+
#: - [UDP] DHCPv6 Client [RFC-ietf-dhc-rfc8415bis-12]
|
2082
2082
|
dhcpv6_client: 'AppType' = 546, 'dhcpv6-client', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
2083
2083
|
|
2084
2084
|
#: - [TCP] DHCPv6 Server [:rfc:`5460`]
|
2085
|
-
#: - [UDP] DHCPv6 Server [
|
2085
|
+
#: - [UDP] DHCPv6 Server [RFC-ietf-dhc-rfc8415bis-12]
|
2086
2086
|
dhcpv6_server: 'AppType' = 547, 'dhcpv6-server', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
2087
2087
|
|
2088
2088
|
#: - [TCP] AFP over TCP
|
@@ -16944,6 +16944,12 @@ class AppType(StrEnum):
|
|
16944
16944
|
#: [SCTP] A25 (FAP-FGW)
|
16945
16945
|
a25_fap_fgw: 'AppType' = 4502, 'a25-fap-fgw', TransportProtocol.get('sctp')
|
16946
16946
|
|
16947
|
+
#: [TCP] Reserved
|
16948
|
+
reserved_4503: 'AppType' = 4503, 'reserved', TransportProtocol.get('tcp')
|
16949
|
+
|
16950
|
+
#: [UDP] M-Bus-OMS over UDP
|
16951
|
+
m_bus_oms: 'AppType' = 4503, 'm-bus-oms', TransportProtocol.get('udp')
|
16952
|
+
|
16947
16953
|
#: [TCP] Reserved
|
16948
16954
|
reserved_4534: 'AppType' = 4534, 'reserved', TransportProtocol.get('tcp')
|
16949
16955
|
|
@@ -17529,6 +17535,12 @@ class AppType(StrEnum):
|
|
17529
17535
|
#: - [UDP] IP Routable Unified Bus
|
17530
17536
|
unified_bus: 'AppType' = 4792, 'unified-bus', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
17531
17537
|
|
17538
|
+
#: [TCP] Reserved
|
17539
|
+
reserved_4793: 'AppType' = 4793, 'reserved', TransportProtocol.get('tcp')
|
17540
|
+
|
17541
|
+
#: [UDP] Ultra Ethernet Transport
|
17542
|
+
uet: 'AppType' = 4793, 'uet', TransportProtocol.get('udp')
|
17543
|
+
|
17532
17544
|
#: - [TCP] Icona Instant Messenging System
|
17533
17545
|
#: - [UDP] Icona Instant Messenging System
|
17534
17546
|
iims: 'AppType' = 4800, 'iims', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
@@ -28202,10 +28214,10 @@ class AppType(StrEnum):
|
|
28202
28214
|
#: [TCP] DNS Dynamic Update Service over TLS [:rfc:`6281`]
|
28203
28215
|
dns_update_tls: 'AppType' = -1, 'dns-update-tls', TransportProtocol.get('tcp')
|
28204
28216
|
|
28205
|
-
#: [TCP] DNS-Based Service Discovery [
|
28217
|
+
#: [TCP] DNS-Based Service Discovery [:rfc:`9665`]
|
28206
28218
|
dnssd_srp: 'AppType' = -1, 'dnssd-srp', TransportProtocol.get('tcp')
|
28207
28219
|
|
28208
|
-
#: [TCP] DNS-Based Service Discovery (TLS) [
|
28220
|
+
#: [TCP] DNS-Based Service Discovery (TLS) [:rfc:`9665`]
|
28209
28221
|
dnssd_srp_tls: 'AppType' = -1, 'dnssd-srp-tls', TransportProtocol.get('tcp')
|
28210
28222
|
|
28211
28223
|
#: [N/A] Roar (Death of Productivity)
|
@@ -28466,6 +28478,9 @@ class AppType(StrEnum):
|
|
28466
28478
|
#: [TCP] Groovesquid Democratic Music Control Protocol
|
28467
28479
|
groovesquid: 'AppType' = -1, 'groovesquid', TransportProtocol.get('tcp')
|
28468
28480
|
|
28481
|
+
#: [TCP] Mobile device cluster
|
28482
|
+
groupthink: 'AppType' = -1, 'groupthink', TransportProtocol.get('tcp')
|
28483
|
+
|
28469
28484
|
#: [N/A] Growl
|
28470
28485
|
growl: 'AppType' = -1, 'growl', TransportProtocol.get('undefined')
|
28471
28486
|
|
@@ -30582,7 +30597,7 @@ class AppType(StrEnum):
|
|
30582
30597
|
if 4489 <= value <= 4499:
|
30583
30598
|
#: [N/A] Unassigned
|
30584
30599
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30585
|
-
if
|
30600
|
+
if 4504 <= value <= 4533:
|
30586
30601
|
#: [N/A] Unassigned
|
30587
30602
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30588
30603
|
if 4539 <= value <= 4544:
|
@@ -30630,7 +30645,7 @@ class AppType(StrEnum):
|
|
30630
30645
|
if 4775 <= value <= 4783:
|
30631
30646
|
#: [N/A] Unassigned
|
30632
30647
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30633
|
-
if
|
30648
|
+
if 4794 <= value <= 4799:
|
30634
30649
|
#: [N/A] Unassigned
|
30635
30650
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30636
30651
|
if 4805 <= value <= 4826:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pcapkit/__init__.py,sha256=
|
1
|
+
pcapkit/__init__.py,sha256=mXEOjbfrxGib5OGQOw6jZhnnva8A3nYEROXbq0Scn3s,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
|
@@ -8,7 +8,7 @@ pcapkit/const/arp/hardware.py,sha256=0VJr0oAyuX5LDWe-pnsaGISoYiqzK0JMql2khFU9tLg
|
|
8
8
|
pcapkit/const/arp/operation.py,sha256=HfqBJaBAmhpulxMq0SqwOs59KSAF9-2eGQrqkOspSAU,3124
|
9
9
|
pcapkit/const/ftp/__init__.py,sha256=ICFUj-uRyoMU7tOTUqPwE1tiKc9b71fLcbCgi9iPACs,936
|
10
10
|
pcapkit/const/ftp/command.py,sha256=TD9lnr2neKI3rU2ZEhNLHS9fT5NMiPQXVpxeaGx5ML4,12361
|
11
|
-
pcapkit/const/ftp/return_code.py,sha256=
|
11
|
+
pcapkit/const/ftp/return_code.py,sha256=CDdcZYLC_hehkR2XjFmmmazkIVAcBHMZoeChpgULCPA,11084
|
12
12
|
pcapkit/const/hip/__init__.py,sha256=cfC7fg9VhuoWAaeQQJ5x_EO1dA5TbscTdkr3jZ-Xluc,5583
|
13
13
|
pcapkit/const/hip/certificate.py,sha256=00sHuIZ-tA3uAUlnSUgYSCl8tt5Lj-14Qb3CHpdm4Tc,2081
|
14
14
|
pcapkit/const/hip/cipher.py,sha256=ZI0QnP_RPlPW7SQvUC3J-lk-b3kjdtbZLbUT8XUNJNc,1695
|
@@ -49,10 +49,10 @@ pcapkit/const/ipv4/tos_thr.py,sha256=OdgGe1kN_XLbo5VDmLh3DKI58Nrz1MhwFVChFYt70xI
|
|
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
51
|
pcapkit/const/ipv6/extension_header.py,sha256=w-kwZuS2KuEmEWtWv16KdNi52t5WRUf0riN_rTvL3Yc,1869
|
52
|
-
pcapkit/const/ipv6/option.py,sha256=
|
52
|
+
pcapkit/const/ipv6/option.py,sha256=BRkmlhWMqzM2Gze0Bf8n1DPRyCkAHLU1w3AH5CxWDDQ,3847
|
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=MhghMzLjPMvzllAf0ZKX2xty4YpjiEcUV-ochVlCwu0,8816
|
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,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=lYcotO45ie1Na4_GUZf5qUkL-nwQA5cjCiUfqKTP3VA,1434652
|
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
123
|
pcapkit/const/reg/transtype.py,sha256=quUphafWvhgSJYulKmhBtb3h4vqiE9qyHWPAt0tWPBs,13019
|
@@ -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.post21.dist-info/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
|
462
|
+
pypcapkit-1.3.5.post21.dist-info/METADATA,sha256=XnGmhpmG3m1e-nUOptBu5WOLFxuioXscxOrH6L-sNaM,7705
|
463
|
+
pypcapkit-1.3.5.post21.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
464
|
+
pypcapkit-1.3.5.post21.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
|
465
|
+
pypcapkit-1.3.5.post21.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
|
466
|
+
pypcapkit-1.3.5.post21.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|