Skip to content

stund: Use lowercase winsock2.h

Windows ships with WinSock2.h but mingw ships with winsock2.h. This is fine on Windows because files are case-insensitive, but on Linux it causes the compiler to not find the header.

All other #includes are lowercase, so just use that.

Merge request reports