mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:27:43 +00:00
LookupServer: Move into LookupServer
namespace
This commit is contained in:
parent
7e9122950e
commit
314f966745
10 changed files with 37 additions and 1 deletions
|
@ -29,6 +29,8 @@
|
|||
#include <AK/String.h>
|
||||
#include <AK/Types.h>
|
||||
|
||||
namespace LookupServer {
|
||||
|
||||
class DNSAnswer {
|
||||
public:
|
||||
DNSAnswer(const String& name, u16 type, u16 class_code, u32 ttl, const String& record_data);
|
||||
|
@ -49,3 +51,5 @@ private:
|
|||
time_t m_expiration_time { 0 };
|
||||
String m_record_data;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue