Added Transport close method
diff --git a/ndn-cpp/c/transport/TcpTransport.h b/ndn-cpp/c/transport/TcpTransport.h
index ec43806..6421d4b 100644
--- a/ndn-cpp/c/transport/TcpTransport.h
+++ b/ndn-cpp/c/transport/TcpTransport.h
@@ -39,6 +39,11 @@
   return ndn_SocketTransport_receive(&self->base, buffer, bufferLength, nBytes);
 }
 
+static inline ndn_Error ndn_TcpTransport_close(struct ndn_TcpTransport *self)
+{
+  return ndn_SocketTransport_close(&self->base);
+}
+
 #ifdef	__cplusplus
 }
 #endif