LainOTN2

Results 3 issues of LainOTN2

MSVC gettimeofday implementation rely on the definition of timeval provided by winsock2.h https://learn.microsoft.com/en-us/windows/win32/api/winsock2/ns-winsock2-timeval typedef struct timeval { long tv_sec; long tv_usec; } TIMEVAL, *PTIMEVAL, *LPTIMEVAL; this give us potential errors...

PR Summary Fist part of the Y2038 issue on OpenSSH. Second part here: https://github.com/PowerShell/openssh-portable/pull/738 Porting LibreSSL fix (https://github.com/libressl/portable/pull/1078) for gettimeofday on MSVC builds. timeval was taken from winsock2.h that is...

PR Summary This is the second part of the fix for Y2038 issues, first part is on LibreSSL https://github.com/PowerShell/LibreSSL/pull/30 , we need to override the definition of timeval from winsock2.h....