{section: What should be changed?}
 
-all the deprecated BSD socket functions such as gethostbyname(), inet_addr, inet_ntoa, inet_aton...
-sockaddr_in should be changed accordingly.
-it should consider sockaddr_storage.
-IP address is no longer fixed 4 bytes nor fixed 16 bytes. It can be both of them.
+All the deprecated BSD socket functions. These are complete list.
+{code}
+struct sockaddr_in
+gethostbyname
+gethostbyname2
+getservbyname
+gethostbyaddr
+getservbyport
+inet_addr
+inet_aton
+inet_nsap_addr
+inet_ntoa
+inet_nsap_ntoa
+inet_makeaddr
+inet_netof
+inet_network
+inet_neta
+inet_net_netop
+inet_net_pton
+rcmd
+rexec
+rrsevport
+{endcode}
+
+IP address is no longer fixed 4 bytes nor fixed 16 bytes. It can be both of them. So, every storage class should be changed. For some of source codes that use 'int' as storage for IP address, this is most troublesome because it could be hidden to text search.
 
 {section: Current Condor Code Base}
 sockaddr_in* is used in many areas.
@@ -24,6 +45,10 @@
 {linebreak}
 class Sock already has abstraction of BSD socket interface. But IP address escapes from this classes by returning it as an 4 byte int and sockaddr_in.
 
+{section: Todo}
+Manageable daily work-list.
+
+1. investigate every source code where calls obsolete BSD socket interface.
 
 *** currently, this is just temporary page
 {linebreak}