K 10 svn:author V 7 rodrigc K 8 svn:date V 27 2007-01-04T04:28:17.000000Z K 7 svn:log V 335 Generate sockdomainname() function with auto_if_type() instead of auto_or_type. The old parsing code would incorrectly decode a socket() call in the ping6 program as: CALL socket(PF_PUP|PF_ECMA|PF_APPLETALK|PF_COIP|PF_SIP,SOCK_DGRAM,0) The new parsing code decodes the same socket() call as: CALL socket(PF_INET6,SOCK_DGRAM,0) END