summaryrefslogtreecommitdiff
path: root/engine/filetransfermgr.cpp
blob: d8ff916aa71e944508e4c41f3b2663f63541cb48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//========= 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 )
{
}