pypcapkit 1.3.1.post21__pp38-none-any.whl → 1.3.1.post28__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 +13 -23
- pcapkit/const/http/status_code.py +2 -2
- pcapkit/const/ipv6/routing.py +2 -2
- pcapkit/const/reg/apptype.py +20 -3
- pcapkit/const/reg/transtype.py +4 -1
- {pypcapkit-1.3.1.post21.dist-info → pypcapkit-1.3.1.post28.dist-info}/METADATA +1 -1
- {pypcapkit-1.3.1.post21.dist-info → pypcapkit-1.3.1.post28.dist-info}/RECORD +12 -12
- {pypcapkit-1.3.1.post21.dist-info → pypcapkit-1.3.1.post28.dist-info}/WHEEL +1 -1
- {pypcapkit-1.3.1.post21.dist-info → pypcapkit-1.3.1.post28.dist-info}/LICENSE +0 -0
- {pypcapkit-1.3.1.post21.dist-info → pypcapkit-1.3.1.post28.dist-info}/entry_points.txt +0 -0
- {pypcapkit-1.3.1.post21.dist-info → pypcapkit-1.3.1.post28.dist-info}/top_level.txt +0 -0
pcapkit/__init__.py
CHANGED
pcapkit/const/ftp/return_code.py
CHANGED
@@ -174,38 +174,28 @@ class ReturnCode(IntEnum):
|
|
174
174
|
#: data needs to be exchanged.
|
175
175
|
CODE_235: 'ReturnCode' = 235, 'Server accepts the security data given by the client; no further security data needs to be exchanged.'
|
176
176
|
|
177
|
-
#: Requested file action okay, completed.
|
178
|
-
CODE_250: 'ReturnCode' = 250, 'Requested file action okay, completed.'
|
177
|
+
#: Requested file action was okay, completed.
|
178
|
+
CODE_250: 'ReturnCode' = 250, 'Requested file action was okay, completed.'
|
179
179
|
|
180
|
-
#:
|
181
|
-
|
180
|
+
#: User name okay, password needed.
|
181
|
+
CODE_331: 'ReturnCode' = 331, 'User name okay, password needed.'
|
182
182
|
|
183
|
-
#:
|
184
|
-
|
185
|
-
|
186
|
-
#: Need account for login.
|
187
|
-
CODE_332: 'ReturnCode' = 332, 'Need account for login.'
|
183
|
+
#: No need account for login.
|
184
|
+
CODE_332: 'ReturnCode' = 332, 'No need account for login.'
|
188
185
|
|
189
186
|
#: Server accepts the security mechanism specified by the client; some security
|
190
187
|
#: data needs to be exchanged.
|
191
188
|
CODE_334: 'ReturnCode' = 334, 'Server accepts the security mechanism specified by the client; some security data needs to be exchanged.'
|
192
189
|
|
193
|
-
#:
|
194
|
-
|
195
|
-
CODE_335: 'ReturnCode' = 335, 'Server accepts the security data given by the client; more security data needs to be exchanged.'
|
196
|
-
|
197
|
-
#: Username okay, need password. Challenge is ". . . . ".
|
198
|
-
CODE_336: 'ReturnCode' = 336, 'Username okay, need password.'
|
199
|
-
|
200
|
-
#: Requested file action pending further information
|
201
|
-
CODE_350: 'ReturnCode' = 350, 'Requested file action pending further information.'
|
190
|
+
#: Username okay, password okay. Challenge is ". . . . ".
|
191
|
+
CODE_336: 'ReturnCode' = 336, 'Username okay, password okay.'
|
202
192
|
|
203
|
-
#: Service
|
204
|
-
#:
|
205
|
-
CODE_421: 'ReturnCode' = 421, 'Service
|
193
|
+
#: Service available, closing control connection. This may be a reply to any
|
194
|
+
#: command if the service knows it must shut down.
|
195
|
+
CODE_421: 'ReturnCode' = 421, 'Service available, closing control connection.'
|
206
196
|
|
207
|
-
#:
|
208
|
-
CODE_425: 'ReturnCode' = 425,
|
197
|
+
#: open data connection.
|
198
|
+
CODE_425: 'ReturnCode' = 425, 'open data connection.'
|
209
199
|
|
210
200
|
#: Connection closed; transfer aborted.
|
211
201
|
CODE_426: 'ReturnCode' = 426, 'Connection closed; transfer aborted.'
|
@@ -234,8 +234,8 @@ class StatusCode(IntEnum):
|
|
234
234
|
#: Unassigned
|
235
235
|
CODE_509 = 509, 'Unassigned'
|
236
236
|
|
237
|
-
#: Not Extended (OBSOLETED) [:rfc:`2774`][
|
238
|
-
#:
|
237
|
+
#: Not Extended (OBSOLETED) [:rfc:`2774`][Status change of HTTP experiments to
|
238
|
+
#: Historic]
|
239
239
|
CODE_510 = 510, 'Not Extended'
|
240
240
|
|
241
241
|
#: Network Authentication Required [:rfc:`6585`]
|
pcapkit/const/ipv6/routing.py
CHANGED
@@ -33,10 +33,10 @@ class Routing(IntEnum):
|
|
33
33
|
#: Segment Routing Header (SRH) [:rfc:`8754`]
|
34
34
|
Segment_Routing_Header = 4
|
35
35
|
|
36
|
-
#: CRH-16 [
|
36
|
+
#: CRH-16 [:rfc:`9631`]
|
37
37
|
CRH_16 = 5
|
38
38
|
|
39
|
-
#: CRH-32 [
|
39
|
+
#: CRH-32 [:rfc:`9631`]
|
40
40
|
CRH_32 = 6
|
41
41
|
|
42
42
|
#: RFC3692-style Experiment 1 [:rfc:`4727`]
|
pcapkit/const/reg/apptype.py
CHANGED
@@ -26212,6 +26212,12 @@ class AppType(StrEnum):
|
|
26212
26212
|
#: [UDP] Reserved
|
26213
26213
|
reserved_27010: 'AppType' = 27010, 'reserved', TransportProtocol.get('udp')
|
26214
26214
|
|
26215
|
+
#: [TCP] Cloud hosting environment network
|
26216
|
+
chlenix: 'AppType' = 27016, 'chlenix', TransportProtocol.get('tcp')
|
26217
|
+
|
26218
|
+
#: [UDP] Reserved
|
26219
|
+
reserved_27016: 'AppType' = 27016, 'reserved', TransportProtocol.get('udp')
|
26220
|
+
|
26215
26221
|
#: [TCP] Mongo database system
|
26216
26222
|
mongodb: 'AppType' = 27017, 'mongodb', TransportProtocol.get('tcp')
|
26217
26223
|
|
@@ -27921,6 +27927,11 @@ class AppType(StrEnum):
|
|
27921
27927
|
#: [TCP] The Bootstrapping Remote Secure Key Infrastructure Proxy [:rfc:`8995`]
|
27922
27928
|
brski_proxy: 'AppType' = -1, 'brski-proxy', TransportProtocol.get('tcp')
|
27923
27929
|
|
27930
|
+
#: [TCP] Bootstrapping Remote Secure Key Infrastructure registrar with CMP
|
27931
|
+
#: capabilities according to the Lightweight CMP Profile (LCMPP, [RFC9483])
|
27932
|
+
#: [RFC-ietf-anima-brski-ae-13]
|
27933
|
+
brski_reg_cmp: 'AppType' = -1, 'brski-reg-cmp', TransportProtocol.get('tcp')
|
27934
|
+
|
27924
27935
|
#: [TCP] The Bootstrapping Remote Secure Key Infrastructure Registrar
|
27925
27936
|
#: [:rfc:`8995`]
|
27926
27937
|
brski_registrar: 'AppType' = -1, 'brski-registrar', TransportProtocol.get('tcp')
|
@@ -28160,10 +28171,10 @@ class AppType(StrEnum):
|
|
28160
28171
|
#: [TCP] DNS Dynamic Update Service over TLS [:rfc:`6281`]
|
28161
28172
|
dns_update_tls: 'AppType' = -1, 'dns-update-tls', TransportProtocol.get('tcp')
|
28162
28173
|
|
28163
|
-
#: [TCP] DNS-
|
28174
|
+
#: [TCP] DNS-Based Service Discovery [RFC-ietf-dnssd-srp-25]
|
28164
28175
|
dnssd_srp: 'AppType' = -1, 'dnssd-srp', TransportProtocol.get('tcp')
|
28165
28176
|
|
28166
|
-
#: [TCP] DNS-
|
28177
|
+
#: [TCP] DNS-Based Service Discovery (TLS) [RFC-ietf-dnssd-srp-25]
|
28167
28178
|
dnssd_srp_tls: 'AppType' = -1, 'dnssd-srp-tls', TransportProtocol.get('tcp')
|
28168
28179
|
|
28169
28180
|
#: [N/A] Roar (Death of Productivity)
|
@@ -28459,6 +28470,9 @@ class AppType(StrEnum):
|
|
28459
28470
|
#: [TCP] An application to communicate with other
|
28460
28471
|
hola: 'AppType' = -1, 'hola', TransportProtocol.get('tcp')
|
28461
28472
|
|
28473
|
+
#: [TCP] Home Assistant
|
28474
|
+
home_assistant: 'AppType' = -1, 'home-assistant', TransportProtocol.get('tcp')
|
28475
|
+
|
28462
28476
|
#: [N/A] iTunes Home Sharing
|
28463
28477
|
home_sharing: 'AppType' = -1, 'home-sharing', TransportProtocol.get('undefined')
|
28464
28478
|
|
@@ -29220,6 +29234,9 @@ class AppType(StrEnum):
|
|
29220
29234
|
#: [N/A] oprofile server protocol
|
29221
29235
|
oprofile: 'AppType' = -1, 'oprofile', TransportProtocol.get('undefined')
|
29222
29236
|
|
29237
|
+
#: [TCP] ORO Core server REST configuration and control API
|
29238
|
+
oro: 'AppType' = -1, 'oro', TransportProtocol.get('tcp')
|
29239
|
+
|
29223
29240
|
#: [UDP] Open Sound Control Interface Transfer
|
29224
29241
|
oscit: 'AppType' = -1, 'oscit', TransportProtocol.get('udp')
|
29225
29242
|
|
@@ -32307,7 +32324,7 @@ class AppType(StrEnum):
|
|
32307
32324
|
if 27000 <= value <= 27009:
|
32308
32325
|
#: [N/A] FLEX LM (1-10)
|
32309
32326
|
return extend_enum(cls, 'flex_lm_%d' % value, value, 'flex-lm', TransportProtocol.get('undefined'))
|
32310
|
-
if 27011 <= value <=
|
32327
|
+
if 27011 <= value <= 27015:
|
32311
32328
|
#: [N/A] Unassigned
|
32312
32329
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
32313
32330
|
if 27018 <= value <= 27344:
|
pcapkit/const/reg/transtype.py
CHANGED
@@ -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
|
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,4 +1,4 @@
|
|
1
|
-
pcapkit/__init__.py,sha256=
|
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
|
@@ -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=fA8bxXBf85nXmQYa4IT4CriCYnZ46zKt-eXCfhG9ico,11064
|
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
|
@@ -33,7 +33,7 @@ pcapkit/const/http/error_code.py,sha256=caVfNqmyXCGeLqbi8NSo45SBjp263E7pgoW9ENRO
|
|
33
33
|
pcapkit/const/http/frame.py,sha256=4l8Uqk9PYfsmki51fYAliaK7rSpTZv-sJNrJNMfmO9w,2555
|
34
34
|
pcapkit/const/http/method.py,sha256=x-7zi1JTrKyX6A84Eg1omsIG9RcBMPR8DDs97YWOQ6c,5011
|
35
35
|
pcapkit/const/http/setting.py,sha256=Y6iPP1dP9yXzVU-3wERqIKi7ClnI2nht9Uogt4IcR4Y,3148
|
36
|
-
pcapkit/const/http/status_code.py,sha256=
|
36
|
+
pcapkit/const/http/status_code.py,sha256=Lj0XrPA4wN4e6PYoV9HYSIBrLawnAkLrb9TVAqen1Yk,8755
|
37
37
|
pcapkit/const/ipv4/__init__.py,sha256=YSYTPDXlnQHsMsSpIzNIXN0Fdios7-w3dso2Qt6MK38,3089
|
38
38
|
pcapkit/const/ipv4/classification_level.py,sha256=O5JyxOU_CPWzamy2pNnFBE8ALyUnUTcnX-iIKJEQXR8,1882
|
39
39
|
pcapkit/const/ipv4/option_class.py,sha256=apHy6yQZbd--dak5gpfGKk27csuXBrY_nPkZSUpPIMQ,1527
|
@@ -53,7 +53,7 @@ pcapkit/const/ipv6/option.py,sha256=b_jZPRLqTLGzFbFSuUB6Nkb6_w4BiO3eVWs19ofHVCU,
|
|
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
55
|
pcapkit/const/ipv6/router_alert.py,sha256=tVD4Uv7RCCGuFYnkix4SDKujNMhXeUiQxvhZtpfEwtY,8830
|
56
|
-
pcapkit/const/ipv6/routing.py,sha256=
|
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
|
59
59
|
pcapkit/const/ipv6/tagger_id.py,sha256=vxNOW6pwFrdduaYwVyAd0ZhwH_EfYsWCFdXDLq7u8vs,1633
|
@@ -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=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=
|
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.
|
462
|
-
pypcapkit-1.3.1.
|
463
|
-
pypcapkit-1.3.1.
|
464
|
-
pypcapkit-1.3.1.
|
465
|
-
pypcapkit-1.3.1.
|
466
|
-
pypcapkit-1.3.1.
|
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,,
|
File without changes
|
File without changes
|
File without changes
|