Message311506
I am sorry, this is the right version
CHANGE:
#ifdef TCP_KEEPCNT
PyModule_AddIntMacro(m, TCP_KEEPCNT);
#endif
TO:
#ifdef TCP_KEEPCNT
#ifdef MS_WINDOWS
#if defined(_MSC_VER) && _MSC_VER >= 1800
//on Windows avaible only from Windows 10 1703 (Build:15063 )
if (IsWindows10CreatorsOrGreater()) {
PyModule_AddIntMacro(m, TCP_KEEPCNT);
}
#else
PyModule_AddIntMacro(m, TCP_KEEPCNT);
#endif
#endif
AND CHANGE:
#ifdef TCP_FASTOPEN
PyModule_AddIntMacro(m, TCP_FASTOPEN);
#endif
TO:
#ifdef TCP_FASTOPEN
#ifdef MS_WINDOWS
#if defined(_MSC_VER) && _MSC_VER >= 1800
//on Windows avaible only from Windows 10 1607(Build: 14393)
if (IsWindows10AnniversaryOrGreater()) {
PyModule_AddIntMacro(m, TCP_FASTOPEN);
}
#else
PyModule_AddIntMacro(m, TCP_FASTOPEN);
#endif
#endif |
|
Date |
User |
Action |
Args |
2018-02-02 16:42:59 | skn78 | set | recipients:
+ skn78, paul.moore, tim.golden, ned.deily, zach.ware, steve.dower, thatiparthy, malin, tjguk |
2018-02-02 16:42:58 | skn78 | set | messageid: <1517589778.96.0.467229070634.issue32394@psf.upfronthosting.co.za> |
2018-02-02 16:42:58 | skn78 | link | issue32394 messages |
2018-02-02 16:42:58 | skn78 | create | |
|