Displaying 5 results from an estimated 5 matches for "ssh_msg_channel_eof".
2002 Mar 22
3
[Bug 179] sshd sends channel data after sending EOF
...rg 2002-03-22 22:37 -------
hm, sshd is not sending channel data after EOF, it's sending _extended_ channel
data. does EOF affect both channel data and extended channel data?
the draft says:
3.3 Closing a Channel
When a party will no longer send more data to a channel, it SHOULD
send SSH_MSG_CHANNEL_EOF.
byte SSH_MSG_CHANNEL_EOF
uint32 recipient_channel
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2010 Apr 14
1
sshd sending eof to peer instead of SSH_MSG_CHANNEL_CLOSE.
...machine, and the two applications begin to exchange data.
app1 pushes bytes into the socket much faster than app2 can process, and
there is a backlog on both machines.
At some point, app1 gives up and terminates the session (by calling
close()), as a result sshd on the server machine sends an
SSH_MSG_CHANNEL_EOF to the peer.
The two sides then wait. app2 does not know that its peer is gone, since
its session with the ssh client is still active.
ssh client, on the client machine does not terminate the session,
because it hasn't received the SSH_MSG_CHANNEL_CLOSE message.
I am not sure what sshd on th...
2020 Jul 07
2
libssh2 is hanging during a file transfert
...received, => SSH_MSG_DEBUG
packet type 91 received, => SSH_MSG_CHANNEL_OPEN_CONFIRMATION
packet type 93 received, => SSH_MSG_CHANNEL_WINDOW_ADJUST
packet type 99 received, => SSH_MSG_CHANNEL_SUCCESS
packet type 98 received, => SSH_MSG_CHANNEL_REQUEST
packet type 96 received, => SSH_MSG_CHANNEL_EOF
packet type 97 received, => SSH_MSG_CHANNEL_CLOSE ==> why ?
and in the log sshd, I've some strange line :
Jul 7 11:52:16 TOTO sshd[19553]: debug1: session_exit_message: release
channel 0
Jul 7 11:52:16 TOTO sshd[19553]: debug2: channel 0: write failed
On Tue, Jul 7, 2020 at 1:57 PM...
2009 Apr 17
0
SCP client prints out "lost connection" error message occasionally
...ange gets successfully completed. All the files that
have to be transferred are transferred all right, with no data missing
in the transferred files. More to the point: The traces show that the
server started the closing phase by sending an exit-status
SSH_MSG_CHANNEL_REQUEST message followed by an SSH_MSG_CHANNEL_EOF
message and an SSH_MSG_CHANNEL_CLOSE message, to which the OpenSSH
client at L replies with an SSH_MSG_CHANNEL_CLOSE message of its own:
The session is closed correctly, as far as the server in S is
concerned.
Second, if I modify ssh.c in the OpenSSH code so that before exiting
main() the program...
2020 Jul 07
3
libssh2 is hanging during a file transfert
I'm trying to send data to a server with openssh 7.9p1, but it's hanging
somewhere.
the client stop at the line :
Jul 7 11:52:16 TOTO sshd[19553]: debug3: channel 0: will not send data
after close
and after 5 minutes the client closes the connection, why ?
This is the trace of the server openssh : ( DEBUG3 level)
Jul 7 11:52:15 TOTO sshd[31175]: debug3: fd 6 is not O_NONBLOCK
Jul