lokinet/llarp/dns/question.hpp

63 lines
1.3 KiB
C++
Raw Normal View History

2018-12-03 22:22:59 +00:00
#ifndef LLARP_DNS_QUESTION_HPP
#define LLARP_DNS_QUESTION_HPP
2018-12-12 00:58:08 +00:00
#include <dns/serialize.hpp>
#include <dns/name.hpp>
#include <net/net_int.hpp>
2018-12-03 22:22:59 +00:00
namespace llarp
{
namespace dns
{
2018-12-04 16:16:43 +00:00
using QType_t = uint16_t;
using QClass_t = uint16_t;
2018-12-03 22:22:59 +00:00
struct Question : public Serialize
{
2018-12-04 16:16:43 +00:00
Question() = default;
Question(Question&& other);
Question(const Question& other);
2018-12-03 22:22:59 +00:00
bool
Encode(llarp_buffer_t* buf) const override;
bool
Decode(llarp_buffer_t* buf) override;
2019-02-24 23:46:37 +00:00
std::ostream&
print(std::ostream& stream, int level, int spaces) const;
2018-12-04 16:16:43 +00:00
bool
operator==(const Question& other) const
{
return qname == other.qname && qtype == other.qtype
&& qclass == other.qclass;
}
2018-12-03 22:22:59 +00:00
Name_t qname;
QType_t qtype;
QClass_t qclass;
2019-04-26 12:11:34 +00:00
/// determine if we match a name
bool
IsName(const std::string& other) const;
/// return qname with no trailing .
std::string
Name() const;
/// determine if we are using this TLD
bool
HasTLD(const std::string& tld) const;
2018-12-03 22:22:59 +00:00
};
2019-02-24 23:46:37 +00:00
inline std::ostream&
operator<<(std::ostream& out, const Question& q)
{
q.print(out, -1, -1);
return out;
}
2018-12-03 22:22:59 +00:00
} // namespace dns
} // namespace llarp
#endif