aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr
diff options
context:
space:
mode:
authorGravatar kpayson64 <kpayson@google.com>2017-09-28 16:01:25 -0700
committerGravatar GitHub <noreply@github.com>2017-09-28 16:01:25 -0700
commit73144f9ab2ba9b37bc3184499faaae1004c8ed90 (patch)
tree8f91a4f8c5b9bbbb7f46a15917687fa32dba8713 /src/core/lib/iomgr
parent6489785f3d12adcfa73e8f1d26b869fe723574b5 (diff)
parent30f1d0fe79d45c8d89a654faf00431366d75ba84 (diff)
Merge pull request #12759 from kpayson64/no_more_xp
Specify min windows version as Vista for Python
Diffstat (limited to 'src/core/lib/iomgr')
-rw-r--r--src/core/lib/iomgr/socket_utils_windows.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/lib/iomgr/socket_utils_windows.c b/src/core/lib/iomgr/socket_utils_windows.c
index 2732c159aa..6e85e4b61f 100644
--- a/src/core/lib/iomgr/socket_utils_windows.c
+++ b/src/core/lib/iomgr/socket_utils_windows.c
@@ -26,12 +26,8 @@
#include <grpc/support/log.h>
const char *grpc_inet_ntop(int af, const void *src, char *dst, size_t size) {
-#ifdef GPR_WIN_INET_NTOP
- return inet_ntop(af, src, dst, size);
-#else
/* Windows InetNtopA wants a mutable ip pointer */
return InetNtopA(af, (void *)src, dst, size);
-#endif /* GPR_WIN_INET_NTOP */
}
#endif /* GRPC_WINDOWS_SOCKETUTILS */