blob: b1ec65b5df027dab9b3304818ee27f18a33cd98c (
plain) (
blame)
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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <WinSock2.h>
#include <cassert>
#include <aws/core/utils/logging/LogMacros.h>
namespace Aws
{
namespace Net
{
static bool s_globalNetworkInitiated = false;
bool IsNetworkInitiated()
{
return s_globalNetworkInitiated;
}
void InitNetwork()
{
if (IsNetworkInitiated())
{
return;
}
// Initialize Winsock( requires winsock version 2.2)
WSADATA wsaData;
int result = WSAStartup(MAKEWORD(2, 2), &wsaData);
assert(result == NO_ERROR);
if (result != NO_ERROR)
{
AWS_LOGSTREAM_ERROR("WinSock2", "Failed to Initate WinSock2.2");
s_globalNetworkInitiated = false;
}
else
{
s_globalNetworkInitiated = true;
}
}
void CleanupNetwork()
{
WSACleanup();
s_globalNetworkInitiated = false;
}
}
}
|