Files
UnrealEngineUWP/Engine/Source/Runtime/NetworkFile/Private/TCPTransport.h
Daniel Lamb c4e09e7650 Fix for slow cook on the fly issue.
Reverted a bunch unsolicited file handling code back to the way it used to be.

[CL 2249125 by Daniel Lamb in Main branch]
2014-08-08 19:46:54 -04:00

24 lines
512 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ITransport.h"
class FTCPTransport : public ITransport
{
public:
FTCPTransport();
~FTCPTransport();
// ITransport Interface.
virtual bool Initialize(const TCHAR* HostIp) override;
virtual bool SendPayloadAndReceiveResponse(TArray<uint8>& In, TArray<uint8>& Out) override;
virtual bool ReceiveResponse(TArray<uint8> &Out) override;
private:
class FSocket* FileSocket;
class FMultichannelTcpSocket* MCSocket;
};