Skip to content

Commit

Permalink
Bumped version to 1.3.1.post22
Browse files Browse the repository at this point in the history
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
  • Loading branch information
github-actions[bot] committed Aug 24, 2024
1 parent 1d486d4 commit 300dae9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 27 deletions.
2 changes: 1 addition & 1 deletion conda/build
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1
0
2 changes: 1 addition & 1 deletion pcapkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@
]

#: version number
__version__ = '1.3.1.post21'
__version__ = '1.3.1.post22'
36 changes: 13 additions & 23 deletions pcapkit/const/ftp/return_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,38 +174,28 @@ def __str__(self) -> 'str':
#: data needs to be exchanged.
CODE_235: 'ReturnCode' = 235, 'Server accepts the security data given by the client; no further security data needs to be exchanged.'

#: Requested file action okay, completed.
CODE_250: 'ReturnCode' = 250, 'Requested file action okay, completed.'
#: Requested file action was okay, completed.
CODE_250: 'ReturnCode' = 250, 'Requested file action was okay, completed.'

#: "PATHNAME" created.
CODE_257: 'ReturnCode' = 257, '"PATHNAME" created.'
#: User name okay, password okay.
CODE_331: 'ReturnCode' = 331, 'User name okay, password okay.'

#: User name okay, need password.
CODE_331: 'ReturnCode' = 331, 'User name okay, need password.'

#: Need account for login.
CODE_332: 'ReturnCode' = 332, 'Need account for login.'
#: No need account for login.
CODE_332: 'ReturnCode' = 332, 'No need account for login.'

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

#: Server accepts the security data given by the client; more security data
#: needs to be exchanged.
CODE_335: 'ReturnCode' = 335, 'Server accepts the security data given by the client; more security data needs to be exchanged.'

#: Username okay, need password. Challenge is ". . . . ".
CODE_336: 'ReturnCode' = 336, 'Username okay, need password.'

#: Requested file action pending further information
CODE_350: 'ReturnCode' = 350, 'Requested file action pending further information.'
#: Username okay, password okay. Challenge is ". . . . ".
CODE_336: 'ReturnCode' = 336, 'Username okay, password okay.'

#: Service not available, closing control connection. This may be a reply to
#: any command if the service knows it must shut down.
CODE_421: 'ReturnCode' = 421, 'Service not available, closing control connection.'
#: Service available, closing control connection. This may be a reply to any
#: command if the service knows it must shut down.
CODE_421: 'ReturnCode' = 421, 'Service available, closing control connection.'

#: Can't open data connection.
CODE_425: 'ReturnCode' = 425, "Can't open data connection."
#: open data connection.
CODE_425: 'ReturnCode' = 425, 'open data connection.'

#: Connection closed; transfer aborted.
CODE_426: 'ReturnCode' = 426, 'Connection closed; transfer aborted.'
Expand Down
4 changes: 2 additions & 2 deletions pcapkit/const/http/status_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ def __str__(self) -> 'str':
#: Unassigned
CODE_509 = 509, 'Unassigned'

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

#: Network Authentication Required [:rfc:`6585`]
Expand Down

0 comments on commit 300dae9

Please sign in to comment.