blob: cf0dfd0dc82520779b08eef45f14771e76c92900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* Starshatter: The Open Source Project
Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
AUTHOR: John DiCamillo
OVERVIEW
========
Wrapper for WinSock Library
*/
#include "NetLayer.h"
#ifdef _WIN32
#include <winsock2.h>
#else
#include <errno.h>
#include <unistd.h>
#endif
#include <chrono>
#include <cstring>
#include <ctime>
#include <ratio>
static const auto base_time = std::chrono::high_resolution_clock::now();
NetLayer::NetLayer() :
fail{false}
{
#ifdef _WIN32
WSADATA info;
WORD ver = MAKEWORD(2,2);
int err = WSAStartup(ver, &info);
if (err)
fail = true;
#endif
}
NetLayer::~NetLayer()
{
#ifdef _WIN32
WSACleanup();
#endif
}
bool
NetLayer::OK() const
{
return !fail;
}
int
NetLayer::GetLastError()
{
#ifdef _WIN32
return WSAGetLastError();
#else
return errno;
#endif
}
std::uint32_t
NetLayer::GetTime()
{
const auto now = std::chrono::high_resolution_clock::now();
const auto diff = now - base_time;
using target_duration = std::chrono::duration<std::uint32_t, std::milli>;
return std::chrono::duration_cast<target_duration>(diff).count();
}
long
NetLayer::GetUTC()
{
return static_cast<long>(std::time(nullptr));
}
Text
NetLayer::GetHostName()
{
char hostname[256];
std::memset(hostname, 0, sizeof(hostname));
::gethostname(hostname, sizeof(hostname));
return hostname;
}
|