aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2024-07-28 23:59:15 -0700
committerMike Buland <mike@xagasoft.com>2024-07-28 23:59:15 -0700
commita130a92b89a168bf1ca01c7054c647a468f791ae (patch)
treeab30aa9205defa7c5ff3a94ab24b0dad60b055c4
parent30242e30800bbc8641484821681cc7443908a165 (diff)
downloadlibgats-main.tar.gz
libgats-main.tar.bz2
libgats-main.tar.xz
libgats-main.zip
Added a protocol flush on writeObject.HEADmain
I believe this is correct, but I'm still not 100% sure how it should be handled overall. This at least works and breaks the fewest things.
-rw-r--r--c++-libbu++/src/protocolgats.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/c++-libbu++/src/protocolgats.cpp b/c++-libbu++/src/protocolgats.cpp
index 2430100..bc8f0c5 100644
--- a/c++-libbu++/src/protocolgats.cpp
+++ b/c++-libbu++/src/protocolgats.cpp
@@ -59,5 +59,6 @@ void Gats::ProtocolGats::onNewData( Bu::Client *pClient )
59void Gats::ProtocolGats::writeObject( Gats::Object *pObj ) 59void Gats::ProtocolGats::writeObject( Gats::Object *pObj )
60{ 60{
61 pStream->writeObject( pObj ); 61 pStream->writeObject( pObj );
62 pUsedClient->flush();
62} 63}
63 64