Skip to content

Commit

Permalink
Bumped version to 1.0.2.post26
Browse files Browse the repository at this point in the history
Updated vendor constant enumerations at Sat Aug 24 10:08: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 0ce915e commit 254d805
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 26 deletions.
2 changes: 1 addition & 1 deletion pcapkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,4 @@
]

#: version number
__version__ = '1.0.2.post25'
__version__ = '1.0.2.post26'
36 changes: 13 additions & 23 deletions pcapkit/const/ftp/return_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,38 +136,28 @@ def __repr__(self) -> 'str':
#: data needs to be exchanged.
CODE_235 = 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 = 250, 'Requested file action okay, completed.'
#: Requested file action was okay, completed.
CODE_250 = 250, 'Requested file action was okay, completed.'

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

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

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

#: Server accepts the security mechanism specified by the client; some security
#: data needs to be exchanged.
CODE_334 = 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 = 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 = 336, 'Username okay, need password. Challenge is ". . . . ".'

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

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

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

#: Connection closed; transfer aborted.
CODE_426 = 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 @@ -227,8 +227,8 @@ def __new__(cls, value: 'int', message: 'str' = '') -> 'Type[StatusCode]':
#: Unassigned
UNASSIGNED_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]
NOT_EXTENDED = 510, 'Not Extended (OBSOLETED)'

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

0 comments on commit 254d805

Please sign in to comment.