net: move network-related files to src/net
Some namespaces are changed:
* ndn::util::FaceUri is now ndn::FaceUri
* ndn::util::ethernet is now ndn::ethernet
* ndn::util::NetworkMonitor and related classes are now in ndn::net
refs #3940
Change-Id: Ia4754caef9726efc73f5a303cec46fc95c744d70
diff --git a/tests/integrated/network-monitor.cpp b/tests/integrated/network-monitor.cpp
index 498b970..917dcae 100644
--- a/tests/integrated/network-monitor.cpp
+++ b/tests/integrated/network-monitor.cpp
@@ -23,13 +23,13 @@
#define BOOST_TEST_DYN_LINK 1
#define BOOST_TEST_MODULE ndn-cxx Integrated Tests (Network Monitor)
-#include "util/network-monitor.hpp"
+#include "net/network-monitor.hpp"
-#include "util/network-address.hpp"
-#include "util/network-interface.hpp"
+#include "net/network-address.hpp"
+#include "net/network-interface.hpp"
#include "util/time.hpp"
-#include "util/detail/link-type-helper.hpp"
+#include "net/detail/link-type-helper.hpp"
#include "boost-test.hpp"
@@ -37,10 +37,9 @@
#include <iostream>
namespace ndn {
-namespace util {
+namespace net {
namespace tests {
-BOOST_AUTO_TEST_SUITE(Util)
BOOST_AUTO_TEST_SUITE(TestNetworkMonitor)
static std::ostream&
@@ -100,8 +99,7 @@
}
BOOST_AUTO_TEST_SUITE_END() // TestNetworkMonitor
-BOOST_AUTO_TEST_SUITE_END() // Util
} // namespace tests
-} // namespace util
+} // namespace net
} // namespace ndn