aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr/socket_windows.h
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-02-10 11:05:48 +0100
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-02-10 11:07:47 +0100
commit3d8e34d4096efeee1bf4b43dad9214a1176c250a (patch)
treede0686edbd62f848e633b61b407e8e3d116d397e /src/core/iomgr/socket_windows.h
parentd72ba6a4ffe695a38600719cee96d39c1a307623 (diff)
Rewording comment :-)
Diffstat (limited to 'src/core/iomgr/socket_windows.h')
-rw-r--r--src/core/iomgr/socket_windows.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/iomgr/socket_windows.h b/src/core/iomgr/socket_windows.h
index 19822ac085..990b520c6d 100644
--- a/src/core/iomgr/socket_windows.h
+++ b/src/core/iomgr/socket_windows.h
@@ -40,11 +40,11 @@
#include <grpc/support/atm.h>
typedef struct grpc_winsocket_callback_info {
- /* I hate Microsoft so much. This is supposed to be a WSAOVERLAPPED,
- * but in order to get that definition, we need to include ws2tcpip.h,
- * which needs to be included from the top, otherwise it'll clash with
- * a previous inclusion of windows.h that in turns includes winsock.h.
- * If anyone knows a way to do it properly, feel free to send a patch.
+ /* This is supposed to be a WSAOVERLAPPED, but in order to get that
+ * definition, we need to include ws2tcpip.h, which needs to be included
+ * from the top, otherwise it'll clash with a previous inclusion of
+ * windows.h that in turns includes winsock.h. If anyone knows a way
+ * to do it properly, feel free to send a patch.
*/
OVERLAPPED overlapped;
void(*cb)(void *opaque, int success);