In the constructor, default port to 9595
diff --git a/ndn-cpp/NDN.hpp b/ndn-cpp/NDN.hpp
index c631340..5f8aff1 100644
--- a/ndn-cpp/NDN.hpp
+++ b/ndn-cpp/NDN.hpp
@@ -26,6 +26,11 @@
   : host_(host), port_(port), transport_(new UdpTransport())
   {
   }
+  
+  NDN(const char *host)
+  : host_(host), port_(9695), transport_(new UdpTransport())
+  {
+  }
 
   /**
    * Encode name as an Interest. If interestTemplate is not 0, use its interest selectors.