BIND 10 trac1968, updated. 90a1b131d672d476cdc1dd30d32f1554f45f98ce [1968] Namespaces in iface_mgr_(os).cc fixed.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu May 10 17:42:13 UTC 2012
The branch, trac1968 has been updated
via 90a1b131d672d476cdc1dd30d32f1554f45f98ce (commit)
from 35cf5f4b8fe9aed43d5374fd3829871d0d7a4c8f (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 90a1b131d672d476cdc1dd30d32f1554f45f98ce
Author: Tomek Mrugalski <tomasz at isc.org>
Date: Thu May 10 19:41:44 2012 +0200
[1968] Namespaces in iface_mgr_(os).cc fixed.
-----------------------------------------------------------------------
Summary of changes:
src/lib/dhcp/iface_mgr_bsd.cc | 4 +++-
src/lib/dhcp/iface_mgr_linux.cc | 1 -
src/lib/dhcp/iface_mgr_sun.cc | 4 +++-
3 files changed, 6 insertions(+), 3 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dhcp/iface_mgr_bsd.cc b/src/lib/dhcp/iface_mgr_bsd.cc
index aa6dd5b..e3f11a1 100644
--- a/src/lib/dhcp/iface_mgr_bsd.cc
+++ b/src/lib/dhcp/iface_mgr_bsd.cc
@@ -25,6 +25,7 @@ using namespace isc::asiolink;
using namespace isc::dhcp;
namespace isc {
+namespace dhcp {
void
IfaceMgr::detectIfaces() {
@@ -48,6 +49,7 @@ bool IfaceMgr::os_receive4(struct msghdr& /*m*/, Pkt4Ptr& /*pkt*/) {
return (true); // pretend that we have everything set up for reception.
}
-}
+} // end of isc::dhcp namespace
+} // end of dhcp namespace
#endif
diff --git a/src/lib/dhcp/iface_mgr_linux.cc b/src/lib/dhcp/iface_mgr_linux.cc
index 3faac02..90431de 100644
--- a/src/lib/dhcp/iface_mgr_linux.cc
+++ b/src/lib/dhcp/iface_mgr_linux.cc
@@ -410,7 +410,6 @@ void Netlink::release_list(NetlinkMessages& messages) {
} // end of anonymous namespace
namespace isc {
-
namespace dhcp {
/// @brief Detect available interfaces on Linux systems.
diff --git a/src/lib/dhcp/iface_mgr_sun.cc b/src/lib/dhcp/iface_mgr_sun.cc
index 50721ba..8b017af 100644
--- a/src/lib/dhcp/iface_mgr_sun.cc
+++ b/src/lib/dhcp/iface_mgr_sun.cc
@@ -25,6 +25,7 @@ using namespace isc::asiolink;
using namespace isc::dhcp;
namespace isc {
+namespace isc::dhcp {
void
IfaceMgr::detectIfaces() {
@@ -48,6 +49,7 @@ bool IfaceMgr::os_receive4(struct msghdr& /*m*/, Pkt4Ptr& /*pkt*/) {
return (true); // pretend that we have everything set up for reception.
}
-}
+} // end of isc::dhcp namespace
+} // end of dhcp namespace
#endif
More information about the bind10-changes
mailing list