Lines Matching defs:message

111      * to them in that way because RFC4254 toggles the meaning. the client sends a SSH_MSG_CHANNEL_OPEN message with
129 * Returns the message numbers
135 * Returns the message content
149 * Outputs the message numbers real-time
642 * Contains the type of the last sent message
874 * Quoting from the RFC, "in some jurisdictions, sending a warning message before
1624 Strings::shift($response, 1); // skip past the message number (it should be SSH_MSG_KEXINIT)
1686 throw new NoSupportedAlgorithmsException('No compatible client to server message authentication algorithms found');
1692 throw new NoSupportedAlgorithmsException('No compatible server to client message authentication algorithms found');
2470 list($message) = Strings::unpackSSH2('s', $response);
2471 $this->errors[] = 'SSH_MSG_USERAUTH_PASSWD_CHANGEREQ: ' . $message;
2584 MUST respond with an SSH_MSG_USERAUTH_INFO_RESPONSE message.
2600 SSH_MSG_USERAUTH_INFO_REQUEST message.
2800 * Sends an SSH2_MSG_IGNORE message every x seconds, if x is a positive non-zero number.
2870 // sending a pty-req SSH_MSG_CHANNEL_REQUEST message is unnecessary and, in fact, in most cases, slows things
3822 list($reason_code, $message) = Strings::unpackSSH2('Ns', $payload);
3823 $this->errors[] = 'SSH_MSG_DISCONNECT: ' . self::$disconnect_reasons[$reason_code] . "\r\n$message";
3833 list($message) = Strings::unpackSSH2('s', $payload);
3834 $this->errors[] = "SSH_MSG_DEBUG: $message";
4158 // "Some systems may not implement signals, in which case they SHOULD ignore this message."
4222 // this actually seems to make things twice as fast. more to the point, the message right after
4410 $message = $sent === false ?
4413 throw new \RuntimeException($message);
4423 * @param string $message
4425 private function append_log($message_number, $message)
4430 $message,
4445 * @param string $message
4453 protected function append_log_helper($constant, $message_number, $message, array &$message_number_log, array &$message_log, &$log_size, &$realtime_log_file, &$realtime_log_wrap, &$realtime_log_size)
4455 // remove the byte identifying the message type from all but the first two messages (ie. the identification strings)
4457 Strings::shift($message);
4474 $log_size += strlen($message);
4475 $message_log[] = $message;
4493 echo $start . $this->format_log([$message], [$message_number]) . $stop;
4511 $entry = $this->format_log([$message], [$message_number]);
5168 * Returns the banner message.
5170 * Quoting from the RFC, "in some jurisdictions, sending a warning message before
5239 // some signatures have the type embedded within the message and some don't