summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/EventHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/EventHandler.cpp')
-rw-r--r--cpp/src/Ice/EventHandler.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/cpp/src/Ice/EventHandler.cpp b/cpp/src/Ice/EventHandler.cpp
index e134289731e..43b39ee7844 100644
--- a/cpp/src/Ice/EventHandler.cpp
+++ b/cpp/src/Ice/EventHandler.cpp
@@ -23,9 +23,12 @@ IceInternal::EventHandler::instance() const
return _instance;
}
-IceInternal::EventHandler::EventHandler(const InstancePtr& instance) :
+IceInternal::EventHandler::EventHandler(const InstancePtr& instance, SOCKET fd) :
_instance(instance),
- _stream(_instance.get())
+ _stream(_instance.get()),
+ _fd(fd),
+ _serializing(false),
+ _registered(false)
{
}