face: Transport::getMtu
refs #3253
Change-Id: Ia4c5cfe210a99b798ce7d05f74ebdd7cfab214f4
diff --git a/daemon/face/unix-stream-transport.cpp b/daemon/face/unix-stream-transport.cpp
index 17351f0..e9e2eab 100644
--- a/daemon/face/unix-stream-transport.cpp
+++ b/daemon/face/unix-stream-transport.cpp
@@ -43,6 +43,8 @@
this->setRemoteUri(FaceUri::fromFd(m_socket.native_handle()));
this->setScope(ndn::nfd::FACE_SCOPE_LOCAL);
this->setPersistency(ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
+ this->setLinkType(ndn::nfd::LINK_TYPE_POINT_TO_POINT);
+ this->setMtu(MTU_UNLIMITED);
NFD_LOG_FACE_INFO("Creating Transport");
}