70b8935fe19b61ed05ab3d0739d274ecd0316da4
Stefan Schuermans implemented UDP v4 address...

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

Stefan Schuermans authored 12 years ago

47) 
48) friend class Udp4Sock;