Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Windows: fix MinGW
Browse files Browse the repository at this point in the history
MinGW's headers are missing a definition for SIO_BASE_HANDLE
  • Loading branch information
piscisaureus committed May 4, 2012
1 parent 4365896 commit 1d24c76
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/win/winsock.h
Expand Up @@ -43,11 +43,15 @@
#endif

#ifndef IPV6_V6ONLY
#define IPV6_V6ONLY 27
# define IPV6_V6ONLY 27
#endif

#ifndef IPV6_HOPLIMIT
#define IPV6_HOPLIMIT 21
# define IPV6_HOPLIMIT 21
#endif

#ifndef SIO_BASE_HANDLE
# define SIO_BASE_HANDLE 0x48000022
#endif

/*
Expand Down

0 comments on commit 1d24c76

Please sign in to comment.