Importance: ?
 
-{section: IpVerify}
+{subsection: IpVerify}
 
 [zach] implemented by mostly Todd, and little bit by Zach and Dan.
 
 IpVerify verifies the remote process's ip from the configuration file. There are many lines that are referring to DCpermission. I am bit confused here. I do not understand what 'DCpermission' made for.
 
+It requires overhaul from interface to implementation.
+
+Importance: ?
+
 {section: Ulrich Mystery}
 Ulrich's Userlevel IPv6 Programming Introductionn - http://people.redhat.com/drepper/userapi-ipv6.html
 
 He denotes gethostbyaddr() as an obsolete. However, gethostbyaddr() accepts a socket type as a parameter. (AF_INET, AF_INET6) That means it should work well with IPv6. Why it is obsolete??
 
+I decided to use continually gethostbyaddr(). Remvoing gethostbyaddr() requires a lot of modification on existing code.
+
 {section: Converting Sock}
 Sock is not only used by TCP/UDP connection but also used by Unix domain socket (AF_UNIX). Basically, Sock can only create TCP or UDP socket internally but SharedEndPoint and SharedPortClient creates Unix domain socket and calls Sock::assign() to pass the descriptor.