Kea 2.5.8
dns_client.h
Go to the documentation of this file.
1// Copyright (C) 2013-2024 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#ifndef DNS_CLIENT_H
8#define DNS_CLIENT_H
9
10#include <asiolink/io_service.h>
11#include <asiodns/io_fetch.h>
12#include <d2srv/d2_tsig_key.h>
14#include <util/buffer.h>
15
16namespace isc {
17namespace d2 {
18
19class DNSClient;
20typedef boost::shared_ptr<DNSClient> DNSClientPtr;
21
23class DNSClientImpl;
24
47class DNSClient {
48public:
49
52 enum Protocol {
54 TCP
55 };
56
58 enum Status {
63 OTHER
64 };
65
72 class Callback {
73 public:
75 virtual ~Callback() { }
76
81 virtual void operator()(DNSClient::Status status) = 0;
82 };
83
93 DNSClient(D2UpdateMessagePtr& response_placeholder, Callback* callback,
94 const Protocol proto = UDP);
95
97 ~DNSClient();
98
100 void stop();
101
110
111private:
112 DNSClient(const DNSClient& source);
113 DNSClient& operator=(const DNSClient& source);
115
116public:
117
122 static unsigned int getMaxTimeout();
123
145 void doUpdate(const asiolink::IOServicePtr& io_service,
146 const asiolink::IOAddress& ns_addr,
147 const uint16_t ns_port,
148 D2UpdateMessage& update,
149 const unsigned int wait,
150 const D2TsigKeyPtr& tsig_key = D2TsigKeyPtr());
151
152private:
154 std::unique_ptr<DNSClientImpl> impl_;
155};
156
157} // namespace d2
158} // namespace isc
159
160#endif // DNS_CLIENT_H
The D2UpdateMessage encapsulates a DNS Update message.
Callback for the DNSClient class.
Definition: dns_client.h:72
virtual ~Callback()
Virtual destructor.
Definition: dns_client.h:75
virtual void operator()(DNSClient::Status status)=0
Function operator implementing a callback.
The DNSClient class handles communication with the DNS server.
Definition: dns_client.h:47
void doUpdate(const asiolink::IOServicePtr &io_service, const asiolink::IOAddress &ns_addr, const uint16_t ns_port, D2UpdateMessage &update, const unsigned int wait, const D2TsigKeyPtr &tsig_key=D2TsigKeyPtr())
Start asynchronous DNS Update with TSIG.
Definition: dns_client.cc:344
~DNSClient()
Virtual destructor, does nothing.
Definition: dns_client.cc:328
void stop()
Stop the client.
Definition: dns_client.cc:333
static unsigned int getMaxTimeout()
Returns maximal allowed timeout value accepted by DNSClient::doUpdate.
Definition: dns_client.cc:338
Status
A status code of the DNSClient.
Definition: dns_client.h:58
@ IO_STOPPED
IO was stopped.
Definition: dns_client.h:61
@ TIMEOUT
No response, timeout.
Definition: dns_client.h:60
@ OTHER
Other, unclassified error.
Definition: dns_client.h:63
@ INVALID_RESPONSE
Response received but invalid.
Definition: dns_client.h:62
@ SUCCESS
Response received and is ok.
Definition: dns_client.h:59
Protocol
Transport layer protocol used by a DNS Client to communicate with a server.
Definition: dns_client.h:52
boost::shared_ptr< D2UpdateMessage > D2UpdateMessagePtr
Pointer to the DNS Update Message.
boost::shared_ptr< DNSClient > DNSClientPtr
Definition: dns_client.h:20
boost::shared_ptr< D2TsigKey > D2TsigKeyPtr
Type of pointer to a D2 TSIG key.
Definition: d2_tsig_key.h:71
Defines the logger used by the top-level component of kea-lfc.