HomeSort by relevance Sort by last modified time
    Searched refs:SSH_MSG_CHANNEL_DATA (Results 1 - 10 of 10) sorted by null

  /external/dropbear/
ssh.h 69 #define SSH_MSG_CHANNEL_DATA 94
svr-session.c 48 {SSH_MSG_CHANNEL_DATA, recv_msg_channel_data},
cli-session.c 50 {SSH_MSG_CHANNEL_DATA, recv_msg_channel_data},
common-channel.c 598 /* -(1+4+4) is SSH_MSG_CHANNEL_DATA, channel number, string length, and
609 isextended ? SSH_MSG_CHANNEL_EXTENDED_DATA : SSH_MSG_CHANNEL_DATA);
  /external/openssh/
ssh1.h 48 #define SSH_MSG_CHANNEL_DATA 23 /* ch,data (int,str) */
serverloop.c     [all...]
clientloop.c     [all...]
channels.c     [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
Packets.java 49 public static final int SSH_MSG_CHANNEL_DATA = 94;
116 reverseNames[94] = "SSH_MSG_CHANNEL_DATA";
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelManager.java 443 msg[0] = Packets.SSH_MSG_CHANNEL_DATA;
1064 throw new IOException("SSH_MSG_CHANNEL_DATA message has wrong size (" + msglen + ")");
1072 throw new IOException("Unexpected SSH_MSG_CHANNEL_DATA message for non-existent channel " + id);
1075 throw new IOException("SSH_MSG_CHANNEL_DATA message has wrong len (calculated " + (msglen - 9) + ", got "
1079 log.debug("Got SSH_MSG_CHANNEL_DATA (channel " + id + ", " + len + ")");
1087 throw new IOException("Got SSH_MSG_CHANNEL_DATA, but channel is not in correct state (" + c.state + ")");
    [all...]

Completed in 681 milliseconds