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
This commit is contained in:
Jeff Hill
2009-07-30 23:43:21 +00:00
parent e1bb171f44
commit 8c45eb4a19
+2 -2
View File
@@ -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;