mirror of
https://github.com/RGBCube/serenity
synced 2025-10-22 03:32:30 +00:00

SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
36 lines
789 B
C++
36 lines
789 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "DNSName.h"
|
|
#include <AK/String.h>
|
|
#include <AK/Types.h>
|
|
|
|
namespace LookupServer {
|
|
|
|
class DNSAnswer {
|
|
public:
|
|
DNSAnswer(const DNSName& name, u16 type, u16 class_code, u32 ttl, const String& record_data);
|
|
|
|
const DNSName& name() const { return m_name; }
|
|
u16 type() const { return m_type; }
|
|
u16 class_code() const { return m_class_code; }
|
|
u32 ttl() const { return m_ttl; }
|
|
const String& record_data() const { return m_record_data; }
|
|
|
|
bool has_expired() const;
|
|
|
|
private:
|
|
DNSName m_name;
|
|
u16 m_type { 0 };
|
|
u16 m_class_code { 0 };
|
|
u32 m_ttl { 0 };
|
|
time_t m_expiration_time { 0 };
|
|
String m_record_data;
|
|
};
|
|
|
|
}
|