In your previous mail you wrote:

   What's the right thing to do with sin6_len if SIN6_LEN is defined.  Are you
   supposed to do:
    
   struct sockaddr_in6 foo;
   foo.sin6_len = SIN6_LEN;
    
   or
    
   address.sin6_len = sizeof (foo);
    
=> second, i.e.:

#ifdef SIN6_LEN
address.sin6_len = sizeof (foo);
#endif

Regards

[EMAIL PROTECTED]
---------------------------------------------------------------------
The IPv6 Users Mailing List
Unsubscribe by sending "unsubscribe users" to [EMAIL PROTECTED]

Reply via email to