mirror of https://github.com/macssh/macssh.git
Correctly handle EOF when reading from stdin (on window close)
This commit is contained in:
parent
28dacfe5d5
commit
d56cb8d5a6
|
@ -1604,6 +1604,12 @@ void *ssh2_thread(WindRec*w)
|
||||||
|
|
||||||
if (bytes > 0)
|
if (bytes > 0)
|
||||||
libssh2_channel_write(channel, buf, bytes);
|
libssh2_channel_write(channel, buf, bytes);
|
||||||
|
else if (bytes == 0)
|
||||||
|
break; // EOF: window was closed. Close channel/session/connection.
|
||||||
|
else {
|
||||||
|
syslog(0, "read() from stdin returned -1 errno %d\n", errno);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//if (FD_ISSET(stdoutfd, &writefds))
|
//if (FD_ISSET(stdoutfd, &writefds))
|
||||||
//{
|
//{
|
||||||
|
|
Loading…
Reference in New Issue