*:stork/
 
 
+{section: job log of collector_engine/hashkey}
+hashkey.h/cpp has sockaddr_in in function definition. But, the implementation does not use it all.
 
+collector_engine.h/cpp has sockaddr_in at collect() and other functions. They just pass sockaddr_in to functions at hashkey.h. Thus, practically nobody uses it.
 
+Design choice: just convert sockaddr_in to ipaddr. no other conversion is required.
 
 {section: Socket connections that do not use class Sock}
 StdUnivSock calls do_connect() (condor_util_lib/do_connect.c) to establish connection with the scheduler. Entire code path uses IPv4 specific constant and functions. Should I just convert them or introduce another socket class?