Archive Index
This month's Index
|
Subject: [libssh2] Blocking read returns PACKET_EAGAIN if not enough data is available?
[libssh2] Blocking read returns PACKET_EAGAIN if not enough data is available?
From: Eberhard Mattes <em-libssh2_at_online.ms>
Date: Tue, 08 May 2007 11:29:02 +0200
Any idea how to resolve bug 1714796?
http://sourceforge.net/tracker/index.php?func=detail&aid=1714796&group_id=125852&atid=703942
The correct place would be libssh2_packet_read(), but currently that function
In blocking mode,
if(remainbuf < blocksize) {
should be replaced with
while(remainbuf < blocksize) {
Eberhard
-------------------------------------------------------------------------
|