// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include namespace zen { struct AsioConfig { unsigned int ThreadCount = 0; bool ForceLoopback = false; bool IsDedicatedServer = false; }; Ref CreateHttpAsioServer(const AsioConfig& Config); } // namespace zen