/*************************************************************************** udpnet.h - Basic UDP/IP functionality ------------------- begin : ma jan 17 2005 copyright : (C) 2005 by CJP email : cornware-cjp@users.sourceforge.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef UDPNET_H #define UDPNET_H #include namespace std {} using namespace std; #include "messagebuffer.h" #include "usmacros.h" #include "ipnumber.h" /** *@author CJP */ class CUDPNet { public: CUDPNet(unsigned int port); //0 = take a free port (like for clients) virtual ~CUDPNet(); virtual bool isConnected(); virtual bool receiveData(unsigned int millisec=1); //returns true if new data has arrived vector m_ReceiveBuffer; virtual bool sendData(CMessageBuffer &data); protected: void closeConnection(); private: unsigned int m_SendCounter; int m_Socket; }; CIPNumber getBroadcastAddress(); #endif