BIND 10 trac1237, updated. 8a040737426aece7cc92a795f2b712d7c3407513 [1237] joinMcast() renamed to joinMulticast()
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Dec 23 12:41:56 UTC 2011
The branch, trac1237 has been updated
via 8a040737426aece7cc92a795f2b712d7c3407513 (commit)
from dc2ae81fef04a1d3ec94ea5e75009393266107fa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 8a040737426aece7cc92a795f2b712d7c3407513
Author: Tomek Mrugalski <tomasz at isc.org>
Date: Fri Dec 23 13:41:30 2011 +0100
[1237] joinMcast() renamed to joinMulticast()
-----------------------------------------------------------------------
Summary of changes:
src/lib/dhcp/iface_mgr.cc | 6 +++---
src/lib/dhcp/iface_mgr.h | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dhcp/iface_mgr.cc b/src/lib/dhcp/iface_mgr.cc
index c7cfa84..2a8c001 100644
--- a/src/lib/dhcp/iface_mgr.cc
+++ b/src/lib/dhcp/iface_mgr.cc
@@ -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;
diff --git a/src/lib/dhcp/iface_mgr.h b/src/lib/dhcp/iface_mgr.h
index 654b8b7..39024b5 100644
--- a/src/lib/dhcp/iface_mgr.h
+++ b/src/lib/dhcp/iface_mgr.h
@@ -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);
};
More information about the bind10-changes
mailing list