Home
last modified time | relevance | path

Searched refs:SSH_MSG_CHANNEL_CLOSE (Results 1 – 11 of 11) sorted by relevance

/external/openssh/
Dssh1.h49 #define SSH_MSG_CHANNEL_CLOSE 24 /* channel (int) */ macro
73 #define SSH_MSG_CHANNEL_INPUT_EOF SSH_MSG_CHANNEL_CLOSE
Dserverloop.c1230 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close); in server_init_dispatch_13()
1242 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); in server_init_dispatch_15()
Dclientloop.c2115 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_close); in client_init_dispatch_13()
2135 dispatch_set(SSH_MSG_CHANNEL_CLOSE, &channel_input_ieof); in client_init_dispatch_15()
Dchannels.c853 packet_start(SSH_MSG_CHANNEL_CLOSE); in channel_pre_input_draining()
958 packet_start(SSH_MSG_CHANNEL_CLOSE); in channel_pre_x11_open_13()
/external/dropbear/
Dssh.h72 #define SSH_MSG_CHANNEL_CLOSE 97 macro
Dsvr-session.c61 {SSH_MSG_CHANNEL_CLOSE, recv_msg_channel_close},
Dcli-session.c62 {SSH_MSG_CHANNEL_CLOSE, recv_msg_channel_close},
Dcommon-channel.c361 buf_putbyte(ses.writepayload, SSH_MSG_CHANNEL_CLOSE); in send_msg_channel_close()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
DPackets.java52 public static final int SSH_MSG_CHANNEL_CLOSE = 97; field in Packets
/external/ganymed-ssh2/
DHISTORY.txt178 SSH_MSG_CHANNEL_CLOSE message (however, in the background the library still expects the server
179 to send the SSH_MSG_CHANNEL_CLOSE message). See below for an explanation.
184 be ignored. However, remote data that arrived before we sent our SSH_MSG_CHANNEL_CLOSE message
189 SSH_MSG_CHANNEL_CLOSE message (event though they should). As a consequence, a local reader may
190 wait forever for the remote SSH_MSG_CHANNEL_EOF or SSH_MSG_CHANNEL_CLOSE messages to arrive.
199 we can send our SSH_MSG_CHANNEL_CLOSE over the TCP connection.
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
DChannelManager.java319 msg[0] = Packets.SSH_MSG_CHANNEL_CLOSE; in closeChannel()
1635 case Packets.SSH_MSG_CHANNEL_CLOSE: in handleMessage()