You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Reverted a bunch unsolicited file handling code back to the way it used to be. [CL 2249125 by Daniel Lamb in Main branch]
24 lines
512 B
C++
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;
|
|
|
|
}; |