pypcapkit 1.3.1.post18__cp310-none-any.whl → 1.3.1.post22__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 +1 -1
- pcapkit/const/ftp/return_code.py +13 -23
- pcapkit/const/http/status_code.py +2 -2
- pcapkit/const/ipx/socket.py +1 -1
- pcapkit/const/reg/apptype.py +16 -4
- pcapkit/const/tcp/option.py +2 -2
- {pypcapkit-1.3.1.post18.dist-info → pypcapkit-1.3.1.post22.dist-info}/METADATA +1 -1
- {pypcapkit-1.3.1.post18.dist-info → pypcapkit-1.3.1.post22.dist-info}/RECORD +12 -12
- {pypcapkit-1.3.1.post18.dist-info → pypcapkit-1.3.1.post22.dist-info}/WHEEL +1 -1
- {pypcapkit-1.3.1.post18.dist-info → pypcapkit-1.3.1.post22.dist-info}/LICENSE +0 -0
- {pypcapkit-1.3.1.post18.dist-info → pypcapkit-1.3.1.post22.dist-info}/entry_points.txt +0 -0
- {pypcapkit-1.3.1.post18.dist-info → pypcapkit-1.3.1.post22.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 okay.
|
181
|
+
CODE_331: 'ReturnCode' = 331, 'User name okay, password okay.'
|
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/ipx/socket.py
CHANGED
pcapkit/const/reg/apptype.py
CHANGED
@@ -20312,6 +20312,15 @@ class AppType(StrEnum):
|
|
20312
20312
|
#: [UDP] Navtech Radar Sensor Data
|
20313
20313
|
nav_data: 'AppType' = 6317, 'nav-data', TransportProtocol.get('udp')
|
20314
20314
|
|
20315
|
+
#: [TCP] IONA Measurement and control data
|
20316
|
+
iona_data: 'AppType' = 6318, 'iona-data', TransportProtocol.get('tcp')
|
20317
|
+
|
20318
|
+
#: [UDP] Reserved
|
20319
|
+
reserved_6318: 'AppType' = 6318, 'reserved', TransportProtocol.get('udp')
|
20320
|
+
|
20321
|
+
#: [N/A] Unassigned
|
20322
|
+
unassigned_6319: 'AppType' = 6319, 'unassigned', TransportProtocol.get('undefined')
|
20323
|
+
|
20315
20324
|
#: - [TCP] Double-Take Replication Service
|
20316
20325
|
#: - [UDP] Double-Take Replication Service
|
20317
20326
|
repsvc: 'AppType' = 6320, 'repsvc', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
@@ -21827,6 +21836,12 @@ class AppType(StrEnum):
|
|
21827
21836
|
#: [UDP] Oracle Coherence Cluster discovery service
|
21828
21837
|
coherence_disc: 'AppType' = 7574, 'coherence-disc', TransportProtocol.get('udp')
|
21829
21838
|
|
21839
|
+
#: [TCP] Main access port for WTMI Panel
|
21840
|
+
wtmi_panel: 'AppType' = 7575, 'wtmi-panel', TransportProtocol.get('tcp')
|
21841
|
+
|
21842
|
+
#: [UDP] Reserved
|
21843
|
+
reserved_7575: 'AppType' = 7575, 'reserved', TransportProtocol.get('udp')
|
21844
|
+
|
21830
21845
|
#: - [TCP] Sun License Manager
|
21831
21846
|
#: - [UDP] Sun License Manager
|
21832
21847
|
sun_lm: 'AppType' = 7588, 'sun-lm', TransportProtocol.get('tcp') | TransportProtocol.get('udp')
|
@@ -30873,9 +30888,6 @@ class AppType(StrEnum):
|
|
30873
30888
|
if 6307 <= value <= 6314:
|
30874
30889
|
#: [N/A] Unassigned
|
30875
30890
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30876
|
-
if 6318 <= value <= 6319:
|
30877
|
-
#: [N/A] Unassigned
|
30878
|
-
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
30879
30891
|
if 6327 <= value <= 6342:
|
30880
30892
|
#: [N/A] Unassigned
|
30881
30893
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
@@ -31167,7 +31179,7 @@ class AppType(StrEnum):
|
|
31167
31179
|
if 7571 <= value <= 7573:
|
31168
31180
|
#: [N/A] Unassigned
|
31169
31181
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
31170
|
-
if
|
31182
|
+
if 7576 <= value <= 7587:
|
31171
31183
|
#: [N/A] Unassigned
|
31172
31184
|
return extend_enum(cls, 'unassigned_%d' % value, value, 'unassigned', TransportProtocol.get('undefined'))
|
31173
31185
|
if 7589 <= value <= 7605:
|
pcapkit/const/tcp/option.py
CHANGED
@@ -139,14 +139,14 @@ class Option(IntEnum):
|
|
139
139
|
Reserved_78 = 78
|
140
140
|
|
141
141
|
#: Accurate ECN Order 0 (AccECN0) (TEMPORARY - registered 2022-08-03, extension
|
142
|
-
#: registered
|
142
|
+
#: registered 2024-07-11, expires 2025-08-03) [draft-ietf-tcpm-accurate-ecn-20]
|
143
143
|
Accurate_ECN_Order_0 = 172
|
144
144
|
|
145
145
|
#: Reserved
|
146
146
|
Reserved_173 = 173
|
147
147
|
|
148
148
|
#: Accurate ECN Order 1 (AccECN1) (TEMPORARY - registered 2022-08-03, extension
|
149
|
-
#: registered
|
149
|
+
#: registered 2024-07-11, expires 2025-08-03) [draft-ietf-tcpm-accurate-ecn-20]
|
150
150
|
Accurate_ECN_Order_1 = 174
|
151
151
|
|
152
152
|
#: RFC3692-style Experiment 1 (also improperly used for shipping
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pcapkit/__init__.py,sha256=
|
1
|
+
pcapkit/__init__.py,sha256=poKEe6On2fkRG23IWg-7tK7gBUrhX-nNBWAuAadPwNU,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=0QOe_MIW_Q5Qnh1Jb1ffm426pFOqHolwySVSfKS1vYg,11060
|
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
|
@@ -59,7 +59,7 @@ pcapkit/const/ipv6/smf_dpd_mode.py,sha256=UQZ0eSNBgYn3eRzuaiukXq5PYe8LFJw3VU9MvY
|
|
59
59
|
pcapkit/const/ipv6/tagger_id.py,sha256=vxNOW6pwFrdduaYwVyAd0ZhwH_EfYsWCFdXDLq7u8vs,1633
|
60
60
|
pcapkit/const/ipx/__init__.py,sha256=3pmHqdDOF1JChjeYIcrywSXGWR4Glk7cOBNCb97gimA,903
|
61
61
|
pcapkit/const/ipx/packet.py,sha256=zWFo9uMKaOuP85pl7ZMkcWX_mGY52Bi48_v2IsH70Ec,1809
|
62
|
-
pcapkit/const/ipx/socket.py,sha256=
|
62
|
+
pcapkit/const/ipx/socket.py,sha256=GBU6Gks0GVY4RMPUq_3fXtcB2hoPKLCRu5absAhBEls,3189
|
63
63
|
pcapkit/const/l2tp/__init__.py,sha256=44PAmgqOa-hP_TO3BZZ7RdqG5onnz9FEfLiJMJYZiOI,548
|
64
64
|
pcapkit/const/l2tp/type.py,sha256=xXzOOqsZQF-6xGUrGoBNjyo8tDBvFjX_1hiIkFSK3o4,1330
|
65
65
|
pcapkit/const/mh/__init__.py,sha256=NVbh2ht78u_FLU0vq8EMOEpYTQJ6GFyby6yWaEDguZA,14558
|
@@ -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=ZiYDDmCDF5cB5vW9ydLSBqtQJcxWqb4yZsWGeYQT0Io,1430802
|
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
123
|
pcapkit/const/reg/transtype.py,sha256=Y5Ytz6UOXrMHft3HXFRKS5JRZpCrlLi9XIzSh_2Gx1s,12888
|
@@ -125,7 +125,7 @@ pcapkit/const/tcp/__init__.py,sha256=PSTSxmdKt5l4NBsXq4m8x6dELWqOSNQxAuWePqTNAw8
|
|
125
125
|
pcapkit/const/tcp/checksum.py,sha256=0SSu5WD2_BcN6CYnIMI0AoToDBFTcVrxOYNzGinm7kE,1524
|
126
126
|
pcapkit/const/tcp/flags.py,sha256=hTsqWViSxku-j8zsbP3274UxNIeNsBF4ZJAyAXMQnRs,1740
|
127
127
|
pcapkit/const/tcp/mp_tcp_option.py,sha256=deLEl_q8GtoLu0GeJ8Ln3pEK-dHUImbUvNvHfANF9ig,2187
|
128
|
-
pcapkit/const/tcp/option.py,sha256=
|
128
|
+
pcapkit/const/tcp/option.py,sha256=HlXecTCiLRRp2S114uPIwDxmtcGxsETZJrlycx5q1dM,5749
|
129
129
|
pcapkit/const/vlan/__init__.py,sha256=e58kBqVyx-aNe10uWkfI1grb1gI5t-VxyYnmP4qT2bM,690
|
130
130
|
pcapkit/const/vlan/priority_level.py,sha256=lditGE8zcRNmCnPW7lTM45R5Q9RQ-CqBRkqGGDSByJw,1936
|
131
131
|
pcapkit/corekit/__init__.py,sha256=YcNlfudunIO0cnpU7xX_r-xZafcO39TmS8Vp7z45BjE,1659
|
@@ -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.post22.dist-info/LICENSE,sha256=KkKND5E2e1Z6CQvSLPc1lRBy4xPRed41AG6q1txotWk,1516
|
462
|
+
pypcapkit-1.3.1.post22.dist-info/METADATA,sha256=nFnaUqlgoE40mTA3xKpR2deAGSCT66ufMlLxBIHDtLc,7705
|
463
|
+
pypcapkit-1.3.1.post22.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
464
|
+
pypcapkit-1.3.1.post22.dist-info/entry_points.txt,sha256=8tVaZ-N0S2t19ELoTEGq_OlC8-dSmd7dvNn-kMV3afY,100
|
465
|
+
pypcapkit-1.3.1.post22.dist-info/top_level.txt,sha256=KEssKRhG9ln3EOfGH-yi98HgI-MM9hOHy09QQP-fvk8,8
|
466
|
+
pypcapkit-1.3.1.post22.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|