Files
UnrealEngineUWP/Engine/Source/Runtime/Online/HTTP/Private/Unix/UnixPlatformHttp.cpp
projectgheist 27ae5afdcb PR #4726: Update copyright notices to 2018. (Contributed by projectgheist)
#rb none
#lockdown Nick.Penwarden

[CL 4070389 by Ben Marsh in Main branch]
2018-05-14 07:48:19 -04:00

27 lines
495 B
C++

// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
#include "Unix/UnixPlatformHttp.h"
#include "Curl/CurlHttp.h"
#include "Curl/CurlHttpManager.h"
void FUnixPlatformHttp::Init()
{
FCurlHttpManager::InitCurl();
}
class FHttpManager * FUnixPlatformHttp::CreatePlatformHttpManager()
{
return new FCurlHttpManager();
}
void FUnixPlatformHttp::Shutdown()
{
FCurlHttpManager::ShutdownCurl();
}
IHttpRequest* FUnixPlatformHttp::ConstructRequest()
{
return new FCurlHttpRequest();
}