Browse Source

Remove Windows specific data type usage

The Tor code base already contains usage of setsockopt(2) with an int as
their option value without problems.
cypherpunks 10 years ago
parent
commit
fd399ec850
1 changed files with 0 additions and 5 deletions
  1. 0 5
      src/or/connection.c

+ 0 - 5
src/or/connection.c

@@ -1154,12 +1154,7 @@ connection_listener_new(const struct sockaddr *listensockaddr,
 
 #ifdef IPV6_V6ONLY
     if (listensockaddr->sa_family == AF_INET6) {
-#ifdef _WIN32
-      /* In Redmond, this kind of thing passes for standards-conformance. */
-      DWORD one = 1;
-#else
       int one = 1;
-#endif
       /* We need to set IPV6_V6ONLY so that this socket can't get used for
        * IPv4 connections. */
       if (setsockopt(s,IPPROTO_IPV6, IPV6_V6ONLY,