mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 09:23:17 +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; }
|
||||
void setSizeUsed(qint64 sizeUsed) { _sizeUsed = sizeUsed; }
|
||||
|
||||
void bytesLeftToRead() const { return _capacity - pos(); }
|
||||
qint64 bytesLeftToRead() const { return _capacity - pos(); }
|
||||
qint64 bytesAvailableForWrite() const { return _capacity - pos(); }
|
||||
|
||||
HifiSockAddr& getSenderSockAddr() { return _senderSockAddr; }
|
||||
|
|
Loading…
Reference in a new issue