I am working through some Static Analysis defects and one that is causing me an issue is this one.
SOCKADDR_IN m_stLclAddr;
SOCKADDR_IN is a member of the WinSock API
The defect is saying that I have not initialized the following:
I am not very familiar familiar with the WinSock API but I have done a bit of research and I just want to know if the following line of code would initialize m_stLclAddr with default values?:
m_stLclAddr = { 0 };
m_stLclAddr = {0}
will set everything to zero the first time (not necessarily default values or what you actually want to do). memset(&m_stLclAddr, 0, sizeof(SOCKADDR_IN));
will set everything in m_stLclAddr to zero for not only initialization, but successive calls as well.
I would think you would want to do something like this:
local_sin.sin_family = AF_INET;
local_sin.sin_port = htons (PORTNUM);
local_sin.sin_addr.s_addr = htonl (INADDR_ANY);
as shown here: http://msdn.microsoft.com/en-us/library/aa454002.aspx
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With