/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Net { // Has network stack been initiated. bool IsNetworkInitiated(); // Initiate network stack. void InitNetwork(); // Cleanup network stack. void CleanupNetwork(); } }