blob: 244df21945b2e995c9d28a24f4ef980d58169b92 (
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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/net/Net.h>
namespace Aws
{
namespace Net
{
// For Posix system, currently we don't need to do anything for network stack initialization.
// But we need to do initialization for WinSock on Windows and call them in Aws.cpp. So these functions
// also exist for Posix systems.
bool IsNetworkInitiated()
{
return true;
}
void InitNetwork()
{
}
void CleanupNetwork()
{
}
}
}
|