• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef WIN32_LEAN_AND_MEAN
2 #define WIN32_LEAN_AND_MEAN
3 #endif
4 #undef  __CRT__NO_INLINE
5 #define __CRT__NO_INLINE
6 #include <winsock2.h>
7 #include <ws2tcpip.h>
8 
IN6_ADDR_EQUAL(const struct in6_addr * a,const struct in6_addr * b)9 int IN6_ADDR_EQUAL(const struct in6_addr *a,const struct in6_addr *b)
10 {
11 	return (memcmp(a, b, sizeof(struct in6_addr)) == 0);
12 }
13