aboutsummaryrefslogtreecommitdiff
path: root/mp/src/public/blockingudpsocket.h
blob: 2f605550b0f1d3ff68fe00e715c98d84e9ba5cea (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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
//=============================================================================//

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

#include "netadr.h"

class CBlockingUDPSocket
{
public:
	explicit CBlockingUDPSocket();
	virtual ~CBlockingUDPSocket();

	bool WaitForMessage( float timeOutInSeconds );
	unsigned int ReceiveSocketMessage( struct sockaddr_in *packet_from, unsigned char *buf, size_t bufsize );
	bool SendSocketMessage( const struct sockaddr_in& rRecipient, const unsigned char *buf, size_t bufsize );

	bool	IsValid() const { return m_Socket != 0; }

protected:
	bool CreateSocket (void);

	class CImpl;
	CImpl				*m_pImpl;

	netadr_t			m_cserIP;
	unsigned int		m_Socket;


};

#endif // BLOCKINGUDPSOCKET_H