From 8c45eb4a19e5b0bda645a6930ce7ac70e9f03b14 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 30 Jul 2009 23:43:21 +0000 Subject: [PATCH] o casStrmClient::inBufBytesAvailable renamed to casStrmClient:: inBufBytesPending reflecting the fact that we nlonger use a socket ioctl to check how many bytes are pending in the sockets input queue o casStrmClient::outBufBytesPresent renamed to casStrmClient::outBufBytesPending for consistency with inBufBytesPending --- src/cas/generic/casStrmClient.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cas/generic/casStrmClient.h b/src/cas/generic/casStrmClient.h index 2596f7bb0..2089273f7 100644 --- a/src/cas/generic/casStrmClient.h +++ b/src/cas/generic/casStrmClient.h @@ -46,12 +46,12 @@ public: void userName ( char * pBuf, unsigned bufSize ) const; ca_uint16_t protocolRevision () const; void sendVersion (); - bufSizeT outBytesPresent () const; protected: caStatus processMsg (); bool inBufFull () const; - bufSizeT inBufBytesAvailable () const; inBufClient::fillCondition inBufFill (); + bufSizeT inBufBytesPending () const; + bufSizeT outBufBytesPending () const; private: char hostNameStr [32]; inBuf in;