diff options
author | Treeki <treeki@gmail.com> | 2014-01-22 09:31:30 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2014-01-22 09:31:30 +0100 |
commit | e3e6a3f2c422a6b82b234f575a6b3bad459e5e0b (patch) | |
tree | 411f501c1e5ee85228607d1440df341be0b66c4c /socketcommon.cpp | |
parent | f458a0b65de5db40ecb57d5831117305fc4dd876 (diff) | |
download | bounce4-e3e6a3f2c422a6b82b234f575a6b3bad459e5e0b.tar.gz bounce4-e3e6a3f2c422a6b82b234f575a6b3bad459e5e0b.zip |
add window management, move hacky Python client over to PyQt5
Diffstat (limited to '')
-rw-r--r-- | socketcommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/socketcommon.cpp b/socketcommon.cpp index e98b837..897bc58 100644 --- a/socketcommon.cpp +++ b/socketcommon.cpp @@ -135,7 +135,7 @@ void SocketRWCommon::writeAction() { } if (amount > 0) { - printf("[fd=%d] Wrote %d bytes\n", sock, amount); + printf("[fd=%d] Wrote %d bytes out of %d\n", sock, amount, outputBuf.size()); outputBuf.trimFromStart(amount); } else if (amount == 0) printf("Sent 0!\n"); |