Cody style: Replace init with initialize.
diff --git a/ndn-cpp/transport/udp-transport.hpp b/ndn-cpp/transport/udp-transport.hpp
index 80699d2..3df6f93 100644
--- a/ndn-cpp/transport/udp-transport.hpp
+++ b/ndn-cpp/transport/udp-transport.hpp
@@ -52,7 +52,7 @@
   UdpTransport() 
   : elementListener_(0), isConnected_(false)
   {
-    ndn_UdpTransport_init(&transport_);
+    ndn_UdpTransport_initialize(&transport_);
     elementReader_.partialData.array = 0;
   }