2007-07-12 Werner Koch <wk@g10code.com>
+ * assuan-handler.c (assuan_get_active_fds): Use get_osfhandle for
+ the data fp.
+ * assuan-socket.c (_assuan_close) [W32]: Use CloseHandle and not close.
+
* assuan-io.c (_assuan_simple_write, _assuan_simple_read): Map
ERROR_BROKEN_PIPE to EPIPE.
if (ctx->outbound.fd != -1)
fdarray[n++] = ctx->outbound.fd;
if (ctx->outbound.data.fp)
+#ifdef HAVE_W32_SYSTEM
+ fdarray[n++] = _get_osfhandle (fileno (ctx->outbound.data.fp));
+#else
fdarray[n++] = fileno (ctx->outbound.data.fp);
+#endif
}
return n;
#else
int rc = closesocket (fd);
if (rc && WSAGetLastError () == WSAENOTSOCK)
- rc = close (fd);
+ rc = CloseHandle (fd);
return rc;
#endif
}