422825abc36131142498020d0db03e5786f20226
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 implement all comparison op...

Stefan Schuermans authored 12 years ago

29)   /// comparison
30)   //@{
31)   int compare(const Udp4Addr &that) const;
32)   bool operator==(const Udp4Addr &that) const;
33)   bool operator!=(const Udp4Addr &that) const;
34)   bool operator<(const Udp4Addr &that) const;
35)   bool operator>(const Udp4Addr &that) const;
36)   bool operator<=(const Udp4Addr &that) const;
37)   bool operator>=(const Udp4Addr &that) const;
38)   //@}
Stefan Schuermans implemented dynamic destina...

Stefan Schuermans authored 12 years ago

39) 
Stefan Schuermans implemented UDP v4 address...

Stefan Schuermans authored 13 years ago

40)   /// return address family
41)   virtual int getFamily() const;
42) 
43)   /**
44)    * @brief parse from string format
45)    * @param[in] str string format
46)    * @return if parsing was successful
47)    */
48)   virtual bool fromStr(const std::string &str);
49) 
50)   /**
51)    * @brief convert to string format
52)    * @return string format
53)    */
54)   virtual std::string toStr() const;
55) protected:
56)   struct sockaddr_in m_addr;
Stefan Schuermans implemented UDPv4 socket class

Stefan Schuermans authored 13 years ago

57) 
58) friend class Udp4Sock;