aboutsummaryrefslogtreecommitdiffstats
path: root/util/network/init.h
diff options
context:
space:
mode:
authorAnton Samokhvalov <pg83@yandex.ru>2022-02-10 16:45:17 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:17 +0300
commitd3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch)
treedd4bd3ca0f36b817e96812825ffaf10d645803f2 /util/network/init.h
parent72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff)
downloadydb-d3a398281c6fd1d3672036cb2d63f842d2cb28c5.tar.gz
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'util/network/init.h')
-rw-r--r--util/network/init.h76
1 files changed, 38 insertions, 38 deletions
diff --git a/util/network/init.h b/util/network/init.h
index 42c6e287ad..08a79c0fca 100644
--- a/util/network/init.h
+++ b/util/network/init.h
@@ -1,60 +1,60 @@
#pragma once
-#include <util/system/error.h>
+#include <util/system/error.h>
#if defined(_unix_)
- #include <fcntl.h>
- #include <netdb.h>
- #include <time.h>
- #include <unistd.h>
- #include <poll.h>
+ #include <fcntl.h>
+ #include <netdb.h>
+ #include <time.h>
+ #include <unistd.h>
+ #include <poll.h>
- #include <sys/uio.h>
- #include <sys/time.h>
- #include <sys/types.h>
- #include <sys/socket.h>
+ #include <sys/uio.h>
+ #include <sys/time.h>
+ #include <sys/types.h>
+ #include <sys/socket.h>
- #include <netinet/in.h>
- #include <netinet/tcp.h>
- #include <arpa/inet.h>
+ #include <netinet/in.h>
+ #include <netinet/tcp.h>
+ #include <arpa/inet.h>
using SOCKET = int;
- #define closesocket(s) close(s)
- #define SOCKET_ERROR -1
- #define INVALID_SOCKET -1
- #define WSAGetLastError() errno
+ #define closesocket(s) close(s)
+ #define SOCKET_ERROR -1
+ #define INVALID_SOCKET -1
+ #define WSAGetLastError() errno
#elif defined(_win_)
- #include <util/system/winint.h>
- #include <io.h>
- #include <winsock2.h>
- #include <ws2tcpip.h>
+ #include <util/system/winint.h>
+ #include <io.h>
+ #include <winsock2.h>
+ #include <ws2tcpip.h>
using nfds_t = ULONG;
-
- #undef Yield
-struct sockaddr_un {
- short sun_family;
- char sun_path[108];
-};
+ #undef Yield
- #define PF_LOCAL AF_UNIX
- #define NETDB_INTERNAL -1
- #define NETDB_SUCCESS 0
+struct sockaddr_un {
+ short sun_family;
+ char sun_path[108];
+};
+
+ #define PF_LOCAL AF_UNIX
+ #define NETDB_INTERNAL -1
+ #define NETDB_SUCCESS 0
#endif
#if defined(_win_) || defined(_darwin_)
- #ifndef MSG_NOSIGNAL
- #define MSG_NOSIGNAL 0
- #endif
+ #ifndef MSG_NOSIGNAL
+ #define MSG_NOSIGNAL 0
+ #endif
#endif // _win_ or _darwin_
void InitNetworkSubSystem();
-static struct TNetworkInitializer {
- inline TNetworkInitializer() {
- InitNetworkSubSystem();
- }
-} NetworkInitializerObject;
+static struct TNetworkInitializer {
+ inline TNetworkInitializer() {
+ InitNetworkSubSystem();
+ }
+} NetworkInitializerObject;