]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1237] joinMcast() renamed to joinMulticast()
authorTomek Mrugalski <tomasz@isc.org>
Fri, 23 Dec 2011 12:41:30 +0000 (13:41 +0100)
committerTomek Mrugalski <tomasz@isc.org>
Fri, 23 Dec 2011 12:41:30 +0000 (13:41 +0100)
src/lib/dhcp/iface_mgr.cc
src/lib/dhcp/iface_mgr.h

index c7cfa8448a0e4118e06abc23a65fe7c86d4af87b..2a8c0010a4f54fffad2bd8b8b6410f8c11802bda 100644 (file)
@@ -218,7 +218,7 @@ void IfaceMgr::openSockets6(uint16_t port) {
                           << " interface " << iface->getFullName());
             }
 
-            if ( !joinMcast(sock1, iface->getName(),
+            if ( !joinMulticast(sock1, iface->getName(),
                              string(ALL_DHCP_RELAY_AGENTS_AND_SERVERS) ) ) {
                 close(sock1);
                 isc_throw(Unexpected, "Failed to join " << ALL_DHCP_RELAY_AGENTS_AND_SERVERS
@@ -414,7 +414,7 @@ IfaceMgr::openSocket6(Iface& iface, const IOAddress& addr, int port) {
         // are link and site-scoped, so there is no sense to join those groups
         // with global addresses.
 
-        if ( !joinMcast( sock, iface.getName(),
+        if ( !joinMulticast( sock, iface.getName(),
                          string(ALL_DHCP_RELAY_AGENTS_AND_SERVERS) ) ) {
             close(sock);
             isc_throw(Unexpected, "Failed to join " << ALL_DHCP_RELAY_AGENTS_AND_SERVERS
@@ -431,7 +431,7 @@ IfaceMgr::openSocket6(Iface& iface, const IOAddress& addr, int port) {
 }
 
 bool
-IfaceMgr::joinMcast(int sock, const std::string& ifname,
+IfaceMgr::joinMulticast(int sock, const std::string& ifname,
 const std::string & mcast) {
 
     struct ipv6_mreq mreq;
index 654b8b7baba8caabc41c79030b305b8d7e7eba65..39024b5a82f8025dafb23e9bdaf6d3391cd79bef 100644 (file)
@@ -452,8 +452,8 @@ private:
     /// @return true if multicast join was successful
     ///
     bool
-    joinMcast(int sock, const std::string& ifname,
-              const std::string& mcast);
+    joinMulticast(int sock, const std::string& ifname,
+                  const std::string& mcast);
 
 };