Maks Naumov
Results
2
issues of
Maks Naumov
"error C2079: 'ftphandle::idletime' uses undefined struct 'timeval'" struct 'timeval' defined in "winsock2.h": http://msdn.microsoft.com/en-us/library/windows/desktop/ms740560%28v=vs.85%29.aspx fix: ``` C++ #ifndef _WIN32 #include #include #else #include #endif ```
``` C++ /* MD5 basic transformation. Transforms state based on block. */ static void MD5Transform(unsigned state[4], const unsigned char block[64]) { UINT4 a = state[0], b = state[1], c =...