summaryrefslogtreecommitdiff
path: root/networksystem/udp_process.h
blob: 73fca50cb6f2fdc3423286b2defb7e32203946e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
//=============================================================================

#ifndef UDP_PROCESS_H
#define UDP_PROCESS_H
#ifdef _WIN32
#pragma once
#endif

class CUDPSocket;
class IConnectionlessPacketHandler;
class ILookupChannel;
class CNetPacket;

void UDP_ProcessSocket( CUDPSocket *socket, IConnectionlessPacketHandler *handler, ILookupChannel *lookup );
void UDP_ProcessConnectionlessPacket( CNetPacket *pPacket, IConnectionlessPacketHandler *pHandler );

#endif // UDP_PROCESS_H