Fix 'occurred' typo
[bpdyndnsd] / src / service_easydns.hpp
CommitLineData
089a7152
BS
1/** @file
2 * @brief EASYDNS Service class header. This class represents the EASYDNS service.
3 *
4 *
5 *
6 * @copyright Intra2net AG
7 * @license GPLv2
8*/
9
629d8110
BS
10#ifndef ServiceEasydns_H
11#define ServiceEasydns_H
089a7152 12
4de6a9b8
BS
13#include "service.hpp"
14#include "logger.hpp"
15#include "httphelper.hpp"
089a7152 16
089a7152 17#include <boost/shared_ptr.hpp>
ca5d6889
BS
18#include <string>
19
089a7152 20
629d8110 21class ServiceEasydns : public Service
089a7152
BS
22{
23
24private:
25
26 friend class boost::serialization::access;
27 template<class Archive>
ca5d6889
BS
28 void serialize(Archive & ar, const unsigned int version)
29 {
30 ar & boost::serialization::base_object<Service>(*this);
31 }
089a7152
BS
32
33 std::string BaseUrl;
34
35 HTTPHelper::Ptr HTTPHelp;
36
37 std::list<std::string> separate_domain_and_host_part(const std::string& str) const;
38
39 std::string assemble_base_url(const std::string& hostname, const std::string& two_level_tld) const;
40
41 std::string get_two_level_tld(const std::string& domain_part) const;
42
43public:
44
629d8110 45 typedef boost::shared_ptr<ServiceEasydns> Ptr;
089a7152 46
629d8110 47 ServiceEasydns();
089a7152 48
4553e833 49 ServiceEasydns(const std::string& _protocol, const std::string& _hostname, const std::string& _login, const std::string& _password, const Logger::Ptr& _logger, const int _update_interval, const int _max_updates_within_interval, const int _max_equal_updates_in_succession, const int dns_cache_ttl, const std::string& proxy, const int proxy_port);
089a7152 50
629d8110 51 ~ServiceEasydns();
089a7152 52
d008afbe 53 UpdateErrorCode perform_update(const std::string& ip);
089a7152
BS
54
55};
56
57#endif