OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SSH_MSG_KEXINIT
(Results
1 - 9
of
9
) sorted by null
/external/dropbear/
ssh.h
35
#define
SSH_MSG_KEXINIT
20
cli-session.c
55
{
SSH_MSG_KEXINIT
, recv_msg_kexinit},
144
if (ses.lastpacket ==
SSH_MSG_KEXINIT
&& cli_ses.kex_state == KEX_NOTHING) {
svr-session.c
52
{
SSH_MSG_KEXINIT
, recv_msg_kexinit},
common-session.c
82
ses.requirenext =
SSH_MSG_KEXINIT
;
common-kex.c
69
buf_putbyte(ses.writepayload,
SSH_MSG_KEXINIT
);
433
/* I_C, the payload of the client's
SSH_MSG_KEXINIT
*/
436
/* I_S, the payload of the server's
SSH_MSG_KEXINIT
*/
451
/* I_C, the payload of the client's
SSH_MSG_KEXINIT
*/
455
/* I_S, the payload of the server's
SSH_MSG_KEXINIT
*/
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
Packets.java
22
public static final int
SSH_MSG_KEXINIT
= 20;
91
reverseNames[20] = "
SSH_MSG_KEXINIT
";
PacketKexInit.java
53
if (packet_type != Packets.
SSH_MSG_KEXINIT
)
79
tw.writeByte(Packets.
SSH_MSG_KEXINIT
);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
KexManager.java
393
if ((kxs == null) && (msg[0] != Packets.
SSH_MSG_KEXINIT
))
402
if (msg[0] == Packets.
SSH_MSG_KEXINIT
)
405
throw new IOException("Unexpected
SSH_MSG_KEXINIT
message during on-going kex exchange!");
TransportManager.java
819
if ((type == Packets.
SSH_MSG_KEXINIT
) || (type == Packets.SSH_MSG_NEWKEYS)
Completed in 161 milliseconds