diff options
author | Marc Laukien <marc@zeroc.com> | 2003-10-10 13:53:22 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-10-10 13:53:22 +0000 |
commit | c0bf25677da461c673e51cd7daabec8aceb8266a (patch) | |
tree | 9f900ced1a634ed28c193a3c3c184922c69f77e1 /cpp/src/Ice/Connection.h | |
parent | fixed connection establishment deadlock (diff) | |
download | ice-c0bf25677da461c673e51cd7daabec8aceb8266a.tar.bz2 ice-c0bf25677da461c673e51cd7daabec8aceb8266a.tar.xz ice-c0bf25677da461c673e51cd7daabec8aceb8266a.zip |
fixed shutdown crash
Diffstat (limited to 'cpp/src/Ice/Connection.h')
-rw-r--r-- | cpp/src/Ice/Connection.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/Ice/Connection.h b/cpp/src/Ice/Connection.h index 2198fafbb83..3868ad2d9ad 100644 --- a/cpp/src/Ice/Connection.h +++ b/cpp/src/Ice/Connection.h @@ -166,8 +166,9 @@ private: BasicStream _batchStream; int _batchRequestNum; - int _dispatchCount; // The number of requests currently being dispatched. - int _proxyCount; // The number of proxies using this connection. + int _dispatchCount; + + int _proxyCount; State _state; |