{endcode}
 
-*string_to_ip is quite dangerous since it does not return any sockaddr_in structure but return IP address as unsigned int. There are classes of functions that doing almost same thing.
-
-
 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 simple text search.
 
 Reading and parsing IP address from config file should be changed as well. If an existing code base entirely relied on BSD socket interface such as inet_aton or inet_addr, it would be easier. However, if the code has proprietary parsing/converting functions, every incident should be found and changed.