summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/UdpTransceiver.h
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-05-28 13:47:20 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-05-28 13:47:20 +0000
commit1cf6107ab5f200b2a224acd711d572341ec1a22f (patch)
tree5545fdc8d560982fbf8b6bc3ae87a089bc1889cc /cpp/src/Ice/UdpTransceiver.h
parentRemove Ice.UseEventLog property from head. Remove code in Glacier2 that (diff)
downloadice-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.h5
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;