b189cbaddc73fcf5a118dee1056e5c5bd93b9f0d
Stefan Schuermans implemented UDP v4 address...

Stefan Schuermans authored 13 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 UDP4ADDR_H
7) #define UDP4ADDR_H
8) 
9) #include <netinet/in.h>
10) #include <string>
11) #include <sys/socket.h>
12) #include <sys/types.h>
13) 
14) #include "Addr.h"
15) 
16) namespace Blinker {
17) 
18) /// UDP v4 address
19) class Udp4Addr: public Addr
20) {
21) public:
22)   /// constructor
23)   Udp4Addr();
24) 
25)   /// virtual destructor
26)   virtual ~Udp4Addr();
27) 
28) public:
Stefan Schuermans implemented dynamic destina...

Stefan Schuermans authored 12 years ago

29)   /// less-than operator (to allow usage as map key)
30)   virtual bool operator<(const Udp4Addr &that) const;
31) 
Stefan Schuermans implemented UDP v4 address...

Stefan Schuermans authored 13 years ago

32)   /// return address family
33)   virtual int getFamily() const;
34) 
35)   /**
36)    * @brief parse from string format
37)    * @param[in] str string format
38)    * @return if parsing was successful
39)    */
40)   virtual bool fromStr(const std::string &str);
41) 
42)   /**
43)    * @brief convert to string format
44)    * @return string format
45)    */
46)   virtual std::string toStr() const;
47) protected:
48)   struct sockaddr_in m_addr;
Stefan Schuermans implemented UDPv4 socket class

Stefan Schuermans authored 13 years ago

49) 
50) friend class Udp4Sock;