zhhyu7 opened a new pull request, #14138:
URL: https://github.com/apache/nuttx/pull/14138

   ## Summary
   
   struct sockaddr_in
   {
     sa_family_t     sin_family;
     in_port_t       sin_port;
     struct in_addr  sin_addr;
     uint8_t         sin_zero[8];
   };
   
   sin_zero is probably a random number.
   
   struct sockaddr_in6
   {
     sa_family_t     sin6_family;
     in_port_t       sin6_port;
     uint32_t        sin6_flowinfo;
     struct in6_addr sin6_addr;
     uint32_t        sin6_scope_id;
   };
   
   sin6_flowinfo and sin6_scope_id is probably a random number.
   
   Random numbers cause the same server configuration check failed, so let's 
initialize it.
   
   ## Impact
   
   ## Testing
   
   local:sim
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to