From 656c2462d337771e5ffd8d33db7b17414b0bd593 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 30 Jul 2009 23:31:32 +0000 Subject: [PATCH] o casDGClient::inBufBytesAvailable renamed to casDGClient :: inBufBytesPending reflecting the fact that we nlonger use a socket ioctl to check how many bytes are pending in the sockets input queue o casDGClient::outBufBytesPresent renamed to casDGClient::outBufBytesPending for consistency with inBufBytesPending --- src/cas/generic/casDGClient.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cas/generic/casDGClient.h b/src/cas/generic/casDGClient.h index 1f9087877..334af2043 100644 --- a/src/cas/generic/casDGClient.h +++ b/src/cas/generic/casDGClient.h @@ -48,12 +48,12 @@ public: caStatus sendErr ( const caHdrLargeArray * curp, ca_uint32_t cid, const int reportedStatus, const char *pformat, ... ); -protected: caStatus processDG (); +protected: bool inBufFull () const; void inBufFill ( inBufClient::fillParameter ); - bufSizeT inBufBytesAvailable () const; - bufSizeT outBufBytesPresent () const; + bufSizeT inBufBytesPending () const; + bufSizeT outBufBytesPending () const; outBufClient::flushCondition flush (); private: inBuf in;