Skip to content

Commit 300dae9

Browse files
Bumped version to 1.3.1.post22
Updated vendor constant enumerations at Sat Aug 24 10:05:27 UTC 2024. The following files have been changed: pcapkit/const/ftp/return_code.py pcapkit/const/http/status_code.py
1 parent 1d486d4 commit 300dae9

File tree

4 files changed

+17
-27
lines changed

4 files changed

+17
-27
lines changed

conda/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1
1+
0

pcapkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@
123123
]
124124

125125
#: version number
126-
__version__ = '1.3.1.post21'
126+
__version__ = '1.3.1.post22'

pcapkit/const/ftp/return_code.py

Lines changed: 13 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -174,38 +174,28 @@ def __str__(self) -> 'str':
174174
#: data needs to be exchanged.
175175
CODE_235: 'ReturnCode' = 235, 'Server accepts the security data given by the client; no further security data needs to be exchanged.'
176176

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.'
179179

180-
#: "PATHNAME" created.
181-
CODE_257: 'ReturnCode' = 257, '"PATHNAME" created.'
180+
#: User name okay, password okay.
181+
CODE_331: 'ReturnCode' = 331, 'User name okay, password okay.'
182182

183-
#: User name okay, need password.
184-
CODE_331: 'ReturnCode' = 331, 'User name okay, need password.'
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.'
188185

189186
#: Server accepts the security mechanism specified by the client; some security
190187
#: data needs to be exchanged.
191188
CODE_334: 'ReturnCode' = 334, 'Server accepts the security mechanism specified by the client; some security data needs to be exchanged.'
192189

193-
#: Server accepts the security data given by the client; more security data
194-
#: needs to be exchanged.
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.'
202192

203-
#: Service not available, closing control connection. This may be a reply to
204-
#: any command if the service knows it must shut down.
205-
CODE_421: 'ReturnCode' = 421, 'Service not available, closing control connection.'
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.'
206196

207-
#: Can't open data connection.
208-
CODE_425: 'ReturnCode' = 425, "Can't open data connection."
197+
#: open data connection.
198+
CODE_425: 'ReturnCode' = 425, 'open data connection.'
209199

210200
#: Connection closed; transfer aborted.
211201
CODE_426: 'ReturnCode' = 426, 'Connection closed; transfer aborted.'

pcapkit/const/http/status_code.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ def __str__(self) -> 'str':
234234
#: Unassigned
235235
CODE_509 = 509, 'Unassigned'
236236

237-
#: Not Extended (OBSOLETED) [:rfc:`2774`][status-change-http-experiments-to-
238-
#: historic]
237+
#: Not Extended (OBSOLETED) [:rfc:`2774`][Status change of HTTP experiments to
238+
#: Historic]
239239
CODE_510 = 510, 'Not Extended'
240240

241241
#: Network Authentication Required [:rfc:`6585`]

0 commit comments

Comments
 (0)