// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include namespace zen { class HttpServer; struct AsioHttpServerOptions { uint32_t ThreadCount{16}; uint32_t ReceiveBufferSize{256}; uint32_t SendBufferSize{256}; }; Ref CreateAsioHttpServer(const AsioHttpServerOptions& Options); } // namespace zen