From be1b93bca0490e2c61b33717de2d13e49c898d31 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 10 Dec 2002 17:04:59 +0000 Subject: [PATCH] switch back to using peek to see if bytes are coming --- src/ca/tcpiiu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/tcpiiu.cpp b/src/ca/tcpiiu.cpp index 418a8d9d5..bc941ba61 100644 --- a/src/ca/tcpiiu.cpp +++ b/src/ca/tcpiiu.cpp @@ -1342,7 +1342,7 @@ void tcpiiu::flushRequest () void tcpiiu::blockUntilBytesArePendingInOS () { -#if 1 +#if 0 FD_SET readBits; FD_ZERO ( & readBits ); while ( this->state == tcpiiu::iiucs_connected ) { @@ -1412,7 +1412,7 @@ void tcpiiu::blockUntilBytesArePendingInOS () bool tcpiiu::bytesArePendingInOS () const { -#if 1 +#if 0 FD_SET readBits; FD_ZERO ( & readBits ); FD_SET ( this->sock, & readBits );