diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-05-28 13:47:20 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-05-28 13:47:20 +0000 |
commit | 1cf6107ab5f200b2a224acd711d572341ec1a22f (patch) | |
tree | 5545fdc8d560982fbf8b6bc3ae87a089bc1889cc /cpp/src/Ice/UdpTransceiver.h | |
parent | Remove Ice.UseEventLog property from head. Remove code in Glacier2 that (diff) | |
download | ice-1cf6107ab5f200b2a224acd711d572341ec1a22f.tar.bz2 ice-1cf6107ab5f200b2a224acd711d572341ec1a22f.tar.xz ice-1cf6107ab5f200b2a224acd711d572341ec1a22f.zip |
Added udp multicast support
Diffstat (limited to 'cpp/src/Ice/UdpTransceiver.h')
-rw-r--r-- | cpp/src/Ice/UdpTransceiver.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/Ice/UdpTransceiver.h b/cpp/src/Ice/UdpTransceiver.h index c39bd3f0a19..85d82e36fdd 100644 --- a/cpp/src/Ice/UdpTransceiver.h +++ b/cpp/src/Ice/UdpTransceiver.h @@ -48,8 +48,8 @@ public: private: - UdpTransceiver(const InstancePtr&, const std::string&, int); - UdpTransceiver(const InstancePtr&, const std::string&, int, bool); + UdpTransceiver(const InstancePtr&, const std::string&, int, const std::string&, int); + UdpTransceiver(const InstancePtr&, const std::string&, int, const std::string&, bool); virtual ~UdpTransceiver(); void setBufSize(const InstancePtr&); @@ -63,6 +63,7 @@ private: SOCKET _fd; struct sockaddr_in _addr; + bool _mcastServer; #ifdef _WIN32 fd_set _rFdSet; fd_set _wFdSet; |