Searched refs:SSH_MSG_CHANNEL_CLOSE (Results 1 – 11 of 11) sorted by relevance
/external/openssh/ |
D | ssh1.h | 49 #define SSH_MSG_CHANNEL_CLOSE 24 /* channel (int) */ macro 73 #define SSH_MSG_CHANNEL_INPUT_EOF SSH_MSG_CHANNEL_CLOSE
|
D | serverloop.c | 1230 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()
|
D | clientloop.c | 2115 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()
|
D | channels.c | 853 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/ |
D | ssh.h | 72 #define SSH_MSG_CHANNEL_CLOSE 97 macro
|
D | svr-session.c | 61 {SSH_MSG_CHANNEL_CLOSE, recv_msg_channel_close},
|
D | cli-session.c | 62 {SSH_MSG_CHANNEL_CLOSE, recv_msg_channel_close},
|
D | common-channel.c | 361 buf_putbyte(ses.writepayload, SSH_MSG_CHANNEL_CLOSE); in send_msg_channel_close()
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
D | Packets.java | 52 public static final int SSH_MSG_CHANNEL_CLOSE = 97; field in Packets
|
/external/ganymed-ssh2/ |
D | HISTORY.txt | 178 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/ |
D | ChannelManager.java | 319 msg[0] = Packets.SSH_MSG_CHANNEL_CLOSE; in closeChannel() 1635 case Packets.SSH_MSG_CHANNEL_CLOSE: in handleMessage()
|