diff -r 146825d63b9a -r c709bb1a08e4 sources/network/udp.h --- a/sources/network/udp.h Thu Dec 11 05:58:55 2014 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -#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; -};