You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.0 KiB
69 lines
1.0 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#include "quakedef.h"
|
||
|
#include "filetransfermgr.h"
|
||
|
|
||
|
// memdbgon must be the last include file in a .cpp file!!!
|
||
|
#include "tier0/memdbgon.h"
|
||
|
|
||
|
CFileTransferMgr::CFileTransferMgr()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
CFileTransferMgr::~CFileTransferMgr()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
FileTransferID_t CFileTransferMgr::StartSending(
|
||
|
INetChannel *pDest,
|
||
|
const void *pUserData,
|
||
|
int userDataLength,
|
||
|
const char *pFileData,
|
||
|
int fileLength,
|
||
|
int bytesPerSecond )
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
void CFileTransferMgr::HandleClientDisconnect( INetChannel *pChannel )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
void CFileTransferMgr::HandleReceivedData( INetChannel *pChannel, const void *pData, int len )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
int CFileTransferMgr::FirstIncoming() const
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
int CFileTransferMgr::NextIncoming( int i ) const
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
int CFileTransferMgr::InvalidIncoming() const
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
void CFileTransferMgr::GetIncomingUserData( int i, const void* &pData, int &dataLen )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
|