pssht
latest
SSH server library written in PHP
|
Public Member Functions | |
__construct (array $methods, $partial) | |
serialize (\fpoirotte\Pssht\Wire\Encoder $encoder) | |
Static Public Member Functions | |
static | getMessageId () |
static | unserialize (\fpoirotte\Pssht\Wire\Decoder $decoder) |
Protected Attributes | |
$methods | |
List of authentication methods that may continue. | |
$partial | |
Whether a partial success occurred. | |
SSH_MSG_USERAUTH_FAILURE message (RFC 4252).
Definition at line 17 of file FAILURE.php.
fpoirotte\Pssht\Messages\USERAUTH\FAILURE::__construct | ( | array | $methods, |
$partial | |||
) |
Construct a new SSH_MSG_USERAUTH_FAILURE message.
array | $methods | List of authentication methods that may continue. |
bool | $partial | Indicates whether partial success was attained (true) or not (false). |
Definition at line 35 of file FAILURE.php.
References fpoirotte\Pssht\Messages\USERAUTH\FAILURE\$methods, and fpoirotte\Pssht\Messages\USERAUTH\FAILURE\$partial.
|
static |
Retrieve the message's identifier.
int | Message identifier. |
Implements fpoirotte\Pssht\Messages\MessageInterface.
Definition at line 51 of file FAILURE.php.
fpoirotte\Pssht\Messages\USERAUTH\FAILURE::serialize | ( | \fpoirotte\Pssht\Wire\Encoder | $encoder | ) |
Serialize the message.
fpoirotte::Pssht::Wire::Encoder | $encoder | Encoder to use to perform serialization. |
MessageInterface | Returns this message. |
Implements fpoirotte\Pssht\Messages\MessageInterface.
Definition at line 56 of file FAILURE.php.
|
static |
Unserialize some data into a message.
fpoirotte::Pssht::Wire::Decoder | $decoder | Decoder to use to perform unserialization. |
MessageInterface | Unserialized message. |
Implements fpoirotte\Pssht\Messages\MessageInterface.
Definition at line 63 of file FAILURE.php.