mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 17:41:12 +02:00
Fix bytesLeftToRead
This commit is contained in:
parent
44c99ef89a
commit
3b8a335c8c
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ public:
|
||||||
qint64 getSizeUsed() const { return _sizeUsed; }
|
qint64 getSizeUsed() const { return _sizeUsed; }
|
||||||
void setSizeUsed(qint64 sizeUsed) { _sizeUsed = sizeUsed; }
|
void setSizeUsed(qint64 sizeUsed) { _sizeUsed = sizeUsed; }
|
||||||
|
|
||||||
void bytesLeftToRead() const { return _capacity - pos(); }
|
qint64 bytesLeftToRead() const { return _capacity - pos(); }
|
||||||
qint64 bytesAvailableForWrite() const { return _capacity - pos(); }
|
qint64 bytesAvailableForWrite() const { return _capacity - pos(); }
|
||||||
|
|
||||||
HifiSockAddr& getSenderSockAddr() { return _senderSockAddr; }
|
HifiSockAddr& getSenderSockAddr() { return _senderSockAddr; }
|
||||||
|
|
Loading…
Reference in a new issue