b6b2996b76e1b0f0e403b4be40430a445bc0873c
Stefan Schuermans implemented UDPv4 socket class

Stefan Schuermans authored 12 years ago

1) /* Blinker
Stefan Schuermans update copyright years

Stefan Schuermans authored 10 years ago

2)    Copyright 2011-2014Stefan Schuermans <stefan@blinkenarea.org>
Stefan Schuermans implemented UDPv4 socket class

Stefan Schuermans authored 12 years ago

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);