Cody style: Replace init with initialize.
diff --git a/ndn-cpp/transport/tcp-transport.hpp b/ndn-cpp/transport/tcp-transport.hpp
index fa3bd47..b9c12bb 100644
--- a/ndn-cpp/transport/tcp-transport.hpp
+++ b/ndn-cpp/transport/tcp-transport.hpp
@@ -52,7 +52,7 @@
   TcpTransport() 
   : elementListener_(0), isConnected_(false)
   {
-    ndn_TcpTransport_init(&transport_);
+    ndn_TcpTransport_initialize(&transport_);
     elementReader_.partialData.array = 0;
   }