Get rid of the last use of ndn::dns in NFD
Change-Id: I9a3188379a4755f5535af05a860a2e3a12ddc8ba
Refs: #2422
diff --git a/daemon/face/websocket-factory.hpp b/daemon/face/websocket-factory.hpp
index 75ff009..a522036 100644
--- a/daemon/face/websocket-factory.hpp
+++ b/daemon/face/websocket-factory.hpp
@@ -29,7 +29,6 @@
#include "protocol-factory.hpp"
#include "websocket-channel.hpp"
-
namespace nfd {
class WebSocketFactory : public ProtocolFactory
@@ -63,8 +62,7 @@
* \returns always a valid pointer to a WebSocketChannel object, an exception
* is thrown if it cannot be created.
*
- * \throws WebSocketFactory::Error, TcpResolver::Error
- *
+ * \throws WebSocketFactory::Error
*/
shared_ptr<WebSocketChannel>
createChannel(const websocket::Endpoint& localEndpoint);
@@ -80,7 +78,7 @@
shared_ptr<WebSocketChannel>
createChannel(const std::string& localIp, const std::string& port);
- // from Factory
+ // from ProtocolFactory
virtual void
createFace(const FaceUri& uri,
const FaceCreatedCallback& onCreated,
@@ -90,7 +88,6 @@
getChannels() const;
private:
-
/**
* \brief Look up WebSocketChannel using specified local endpoint
*