362c1f4c3b5ce9e3fce11167a51fbe4cdb2174de
Stefan Schuermans implemented UDP v4 address...

Stefan Schuermans authored 12 years ago

1) /* Blinker
Stefan Schuermans update copyright header

Stefan Schuermans authored 5 years ago

2)    Copyright 2011-2019 Stefan Schuermans <stefan@blinkenarea.org>
Stefan Schuermans implemented UDP v4 address...

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 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 12 years ago

40)   /// return address family
41)   virtual int getFamily() const;
42) 
Stefan Schuermans add method to read port num...

Stefan Schuermans authored 12 years ago

43)   /// return port (use this function only if absolutely necessary)
44)   virtual int getPort() const;
45) 
BlinkenArea allow setting port

BlinkenArea authored 12 years ago

46)   /// set port (use this function only if absolutely necessary)
47)   virtual void setPort(int port);
48) 
Stefan Schuermans implemented UDP v4 address...

Stefan Schuermans authored 12 years ago

49)   /**
50)    * @brief parse from string format
51)    * @param[in] str string format
52)    * @return if parsing was successful
53)    */
54)   virtual bool fromStr(const std::string &str);
55) 
56)   /**
57)    * @brief convert to string format
58)    * @return string format
59)    */
60)   virtual std::string toStr() const;
61) protected:
62)   struct sockaddr_in m_addr;
Stefan Schuermans implemented UDPv4 socket class

Stefan Schuermans authored 12 years ago

63) 
64) friend class Udp4Sock;