diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-06-30 09:44:39 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-06-30 09:44:39 +0000 |
commit | 34d41333b3b1e104a0796b15c687061ef4560b8e (patch) | |
tree | 352393e3f845e3633b735d1b7432356f7c8badd6 /cpp/src/Ice/TcpTransceiver.h | |
parent | Make install fixes (diff) | |
download | ice-34d41333b3b1e104a0796b15c687061ef4560b8e.tar.bz2 ice-34d41333b3b1e104a0796b15c687061ef4560b8e.tar.xz ice-34d41333b3b1e104a0796b15c687061ef4560b8e.zip |
Merged fix from branch (throughput performance issue on Win32)
Diffstat (limited to 'cpp/src/Ice/TcpTransceiver.h')
-rw-r--r-- | cpp/src/Ice/TcpTransceiver.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/Ice/TcpTransceiver.h b/cpp/src/Ice/TcpTransceiver.h index 14b6930f4cf..e9e9a870500 100644 --- a/cpp/src/Ice/TcpTransceiver.h +++ b/cpp/src/Ice/TcpTransceiver.h @@ -51,6 +51,9 @@ private: fd_set _wFdSet; const std::string _desc; +#ifdef _WIN32 + const bool _isPeerLocal; +#endif }; } |