summaryrefslogtreecommitdiff
path: root/ace/SOCK_Dgram_Mcast.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-08-14 07:03:12 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-08-14 07:03:12 +0000
commit5d6aed4351ed1a6483ad1893937b564cfdda537a (patch)
treebd0d1a3d7e80466e5e8e99720d5dd1495ea99040 /ace/SOCK_Dgram_Mcast.cpp
parent7f61a53818e64251b4804bad80f06873b0524e08 (diff)
downloadATCD-5d6aed4351ed1a6483ad1893937b564cfdda537a.tar.gz
ChangeLogTag:Fri Aug 13 23:26:56 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/SOCK_Dgram_Mcast.cpp')
-rw-r--r--ace/SOCK_Dgram_Mcast.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/SOCK_Dgram_Mcast.cpp b/ace/SOCK_Dgram_Mcast.cpp
index aa1d96803fa..cbbe9b27f8c 100644
--- a/ace/SOCK_Dgram_Mcast.cpp
+++ b/ace/SOCK_Dgram_Mcast.cpp
@@ -332,7 +332,7 @@ ACE_SOCK_Dgram_Mcast::subscribe_ifs (const ACE_INET_Addr &mcast_addr,
ACE_INET_Addr *if_addrs = 0;
size_t if_cnt;
- if (ACE_Sock_Connect::get_ip_interfaces (if_cnt, if_addrs) != 0)
+ if (ACE::get_ip_interfaces (if_cnt, if_addrs) != 0)
return -1;
size_t nr_subscribed = 0;
@@ -383,7 +383,7 @@ ACE_SOCK_Dgram_Mcast::subscribe_ifs (const ACE_INET_Addr &mcast_addr,
ACE_INET_Addr *if_addrs = 0;
size_t if_cnt;
- if (ACE_Sock_Connect::get_ip_interfaces (if_cnt, if_addrs) != 0)
+ if (ACE::get_ip_interfaces (if_cnt, if_addrs) != 0)
return -1;
size_t nr_subscribed = 0;
@@ -692,7 +692,7 @@ ACE_SOCK_Dgram_Mcast::unsubscribe_ifs (const ACE_INET_Addr &mcast_addr,
// is a limitation of the way <get_ip_interfaces> works with
// old versions of MSVC. The reliable way of getting the interface
// list is available only with MSVC 5 and newer.
- if (ACE_Sock_Connect::get_ip_interfaces (if_cnt, if_addrs) != 0)
+ if (ACE::get_ip_interfaces (if_cnt, if_addrs) != 0)
return -1;
size_t nr_unsubscribed = 0;
@@ -741,7 +741,7 @@ ACE_SOCK_Dgram_Mcast::unsubscribe_ifs (const ACE_INET_Addr &mcast_addr,
// is a limitation of the way <get_ip_interfaces> works with
// old versions of MSVC. The reliable way of getting the interface list
// is available only with MSVC 5 and newer.
- if (ACE_Sock_Connect::get_ip_interfaces (if_cnt, if_addrs) != 0)
+ if (ACE::get_ip_interfaces (if_cnt, if_addrs) != 0)
return -1;
size_t nr_unsubscribed = 0;