sources/network/udpsocket.h

Thu, 11 Dec 2014 05:59:43 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Thu, 11 Dec 2014 05:59:43 +0200
changeset 6
c709bb1a08e4
parent 5
sources/network/udp.h@146825d63b9a
child 8
8b697d30c49f
permissions
-rw-r--r--

- udp -> udpsocket

#pragma once
#include "../main.h"
#include "ipaddress.h"
#include "bytestream.h"

enum { MAX_DATAGRAM_LENGTH = 5120 };

struct Datagram
{
	Bytestream data;
	IPAddress from;
};

// -------------------------------------------------------------------------------------------------
//
class UDPSocket
{
public:
	UDPSocket();
	virtual ~UDPSocket();

	METHOD bind (unsigned short port) -> bool;
	METHOD read (Datagram& datagram) -> bool;
	METHOD send (const Bytestream& data, const IPAddress& addr) -> bool;
	METHOD set_blocking (bool a) -> bool;

private:
	IPAddress m_addr;
	String m_error;
	int m_socket;
};

mercurial