1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-30 01:02:06 +00:00
serenity/Userland/Services/LookupServer/MulticastDNS.h
2022-04-01 21:24:45 +01:00

46 lines
956 B
C++

/*
* Copyright (c) 2021, Sergey Bugaev <bugaevc@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "DNSAnswer.h"
#include "DNSName.h"
#include "DNSPacket.h"
#include <AK/IPv4Address.h>
#include <LibCore/UDPServer.h>
#include <netinet/in.h>
namespace LookupServer {
class MulticastDNS : public Core::UDPServer {
C_OBJECT(MulticastDNS)
public:
Vector<DNSAnswer> lookup(DNSName const&, DNSRecordType record_type);
private:
explicit MulticastDNS(Object* parent = nullptr);
void announce();
ErrorOr<size_t> emit_packet(DNSPacket const&, sockaddr_in const* destination = nullptr);
void handle_packet();
void handle_query(DNSPacket const&);
Vector<IPv4Address> local_addresses() const;
DNSName m_hostname;
static constexpr sockaddr_in mdns_addr {
AF_INET,
// htons(5353)
0xe914,
// 224.0.0.251
{ 0xfb0000e0 },
{ 0 }
};
};
}