2b9666bf18b544b7ddd7aea0f1a3d228f1cd0b8f
Stefan Schuermans implemented UDPv4 socket class

Stefan Schuermans authored 12 years ago

1) /* Blinker
2)    Copyright 2011 Stefan Schuermans <stefan@blinkenarea.org>
3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
4)    a blinkenarea.org project */
5) 
6) #ifndef UDP4SOCK_H
7) #define UDP4SOCK_H
8) 
9) #include <string>
10) 
11) #include "Io.h"
12) #include "Udp4Addr.h"
13) 
14) namespace Blinker {
15) 
16) /**
17)  * @brief UDP v4 socket
18)  *
Stefan Schuermans typo

Stefan Schuermans authored 12 years ago

19)  * UDP v4 socket in non-blocking mode with address re-usage enabled
Stefan Schuermans implemented UDPv4 socket class

Stefan Schuermans authored 12 years ago

20)  */
21) class Udp4Sock: public Io
22) {
23) public:
24)   /// constructor
25)   Udp4Sock();
26) 
27)   /// destructor
28)   ~Udp4Sock();
29) 
30) private:
31)   /// copy constructor disabled
Stefan Schuermans fix disabling copy constructor

Stefan Schuermans authored 12 years ago

32)   Udp4Sock(const Udp4Sock &that);