${PROJECT_BINARY_DIR}/src/include
${PROJECT_SOURCE_DIR}/src)
+if(WIN32)
+ include_directories(
+ ${PROJECT_SOURCE_DIR}/src/include/win32)
+ # Boost complains if winsock2.h (or windows.h) is included before asio.hpp.
+ add_definitions(-include winsock_wrapper.h)
+endif()
+
if(OFED_PREFIX)
include_directories(SYSTEM ${OFED_PREFIX}/include)
link_directories(${OFED_PREFIX}/lib)
#include <fcntl.h>
#include <sys/socket.h>
#include <sys/un.h>
+#include <unistd.h>
#include "common/admin_socket.h"
#include "common/errno.h"
#include <unistd.h>
+#include "include/compat.h"
+
std::string ceph_get_hostname()
{
// are we in a container? if so we would prefer the *real* hostname.
#if defined(_WIN32)
+#include "include/win32/winsock_compat.h"
+
typedef _sigset_t sigset_t;
typedef int uid_t;
--- /dev/null
+#include "winsock_compat.h"
--- /dev/null
+#include "winsock_compat.h"
--- /dev/null
+#include "winsock_compat.h"
--- /dev/null
+#include "winsock_compat.h"
--- /dev/null
+#include <errno.h>
--- /dev/null
+#include "winsock_compat.h"
--- /dev/null
+#include "include/win32/winsock_compat.h"
--- /dev/null
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+/*
+ * Ceph - scalable distributed file system
+ *
+ * Copyright (c) 2019 SUSE LLC
+ *
+ * This is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software
+ * Foundation. See file COPYING.
+ *
+ */
+
+#ifndef WINSOCK_COMPAT_H
+#define WINSOCK_COMPAT_H 1
+
+#include "winsock_wrapper.h"
+
+#ifndef poll
+#define poll WSAPoll
+#endif
+
+// afunix.h is available starting with Windows SDK 17063. Still, it wasn't
+// picked up by mingw yet, for which reason we're going to define sockaddr_un
+// here.
+#ifndef _AFUNIX_
+#define UNIX_PATH_MAX 108
+
+typedef struct sockaddr_un
+{
+ ADDRESS_FAMILY sun_family; /* AF_UNIX */
+ char sun_path[UNIX_PATH_MAX]; /* pathname */
+} SOCKADDR_UN, *PSOCKADDR_UN;
+
+#define SIO_AF_UNIX_GETPEERPID _WSAIOR(IOC_VENDOR, 256)
+#endif /* _AFUNIX */
+
+#endif /* WINSOCK_COMPAT_H */
--- /dev/null
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+/*
+ * Ceph - scalable distributed file system
+ *
+ * Copyright (c) 2020 SUSE LLC
+ *
+ * This is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software
+ * Foundation. See file COPYING.
+ *
+ */
+
+#ifndef WINSOCK_WRAPPER_H
+#define WINSOCK_WRAPPER_H 1
+
+#ifdef __cplusplus
+// Boost complains if winsock2.h (or windows.h) is included before asio.hpp.
+#include <boost/asio.hpp>
+#endif
+
+#include <winsock2.h>
+#include <ws2ipdef.h>
+#include <ws2tcpip.h>
+
+#endif /* WINSOCK_WRAPPER_H */