face: Fixing bug with InternalFace considered not local and changing "isLocal" method to be pure virtual

This way the decision about the face locality has to be done explicitly
inside specific face implementation and potentially avoids problems.

Change-Id: I5219cce87385313546453d14a5a7ca4542893911
diff --git a/daemon/face/face.cpp b/daemon/face/face.cpp
index cef9c1b..5ca8f29 100644
--- a/daemon/face/face.cpp
+++ b/daemon/face/face.cpp
@@ -53,12 +53,6 @@
 }
 
 bool
-Face::isLocal() const
-{
-  return false;
-}
-
-bool
 Face::isMultiAccess() const
 {
   return false;
diff --git a/daemon/face/face.hpp b/daemon/face/face.hpp
index d4e4578..924b4fa 100644
--- a/daemon/face/face.hpp
+++ b/daemon/face/face.hpp
@@ -84,6 +84,13 @@
   virtual void
   close() = 0;
 
+  /** \brief Get whether face is connected to a local app
+   *
+   *  In this base class this property is always false.
+   */
+  virtual bool
+  isLocal() const = 0;
+  
   /** \brief Get whether underlying communication is up
    *
    *  In this base class this property is always true.
@@ -102,13 +109,6 @@
   virtual const std::string&
   getDescription() const;
 
-  /** \brief Get whether face is connected to a local app
-   *
-   *  In this base class this property is always false.
-   */
-  virtual bool
-  isLocal() const;
-
   /** \brief Get whether packets sent this Face may reach multiple peers
    *
    *  In this base class this property is always false.
diff --git a/daemon/face/stream-face.hpp b/daemon/face/stream-face.hpp
index 9573813..ac08421 100644
--- a/daemon/face/stream-face.hpp
+++ b/daemon/face/stream-face.hpp
@@ -34,7 +34,7 @@
 
   virtual void
   close();
-  
+
 protected:
   void
   handleSend(const boost::system::error_code& error,
diff --git a/daemon/face/tcp-face.cpp b/daemon/face/tcp-face.cpp
index 774a4d0..874de98 100644
--- a/daemon/face/tcp-face.cpp
+++ b/daemon/face/tcp-face.cpp
@@ -18,4 +18,11 @@
 {
 }
 
+bool
+TcpFace::isLocal() const
+{
+  return false;
+}
+
+
 } // namespace nfd
diff --git a/daemon/face/tcp-face.hpp b/daemon/face/tcp-face.hpp
index 98593a0..c41f601 100644
--- a/daemon/face/tcp-face.hpp
+++ b/daemon/face/tcp-face.hpp
@@ -23,6 +23,9 @@
 
   explicit
   TcpFace(const shared_ptr<protocol::socket>& socket);
+
+  virtual bool
+  isLocal() const;
 };
 
 } // namespace nfd