continue implementation; first tests with recursion returned IPs but then added cance...
[pingcheck] / src / dns / timetolive.h
1 /*
2 The software in this package is distributed under the GNU General
3 Public License version 2 (with a special exception described below).
4
5 A copy of GNU General Public License (GPL) is included in this distribution,
6 in the file COPYING.GPL.
7
8 As a special exception, if other files instantiate templates or use macros
9 or inline functions from this file, or you compile this file and link it
10 with other works to produce a work based on this file, this file
11 does not by itself cause the resulting work to be covered
12 by the GNU General Public License.
13
14 However the source code for this file must still be made available
15 in accordance with section (3) of the GNU General Public License.
16
17 This exception does not invalidate any other reasons why a work based
18 on this file might be covered by the GNU General Public License.
19 */
20 #ifndef TIME_TO_LIVE_H
21 #define TIME_TO_LIVE_H
22
23 #include <stdint.h>
24
25 #include <boost/asio.hpp>
26 //#include "dns/hostaddress.h"
27
28 // forward declaration
29 class HostAddress;
30
31 //-----------------------------------------------------------------------------
32 // TimeToLive
33 //-----------------------------------------------------------------------------
34
35 class TimeToLive
36 {
37 public:
38     TimeToLive( uint32_t ttl = 0 );
39     ~TimeToLive();
40
41     uint32_t get_value() const;
42     void set_value( const uint32_t ttl );
43
44     uint32_t get_updated_value() const;
45
46 private:
47     // required for saving and loading TtlSetTime to original value
48     friend class HostAddress;
49     //template<class Archive>
50     //friend void HostAddress::load(Archive & ar, const unsigned int version);
51     //template<class Archive>
52     //friend void HostAddress::save(Archive & ar, const unsigned int version)
53     //                                                                    const;
54
55     /// the numeric time-to-live
56     uint32_t Ttl;
57     /// the time when the time-to-live was set, so it is possible to know the
58     /// elapsed time
59     boost::posix_time::ptime TtlSetTime;
60 };
61
62 #endif // TIME_TO_LIVE_H