1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 11:22:24 +01:00
Files
esphome/esphome/components/mdns/mdns_component.h
2025-06-11 17:27:58 +12:00

54 lines
1.3 KiB
C++

#pragma once
#include "esphome/core/defines.h"
#ifdef USE_MDNS
#include <string>
#include <vector>
#include "esphome/core/automation.h"
#include "esphome/core/component.h"
namespace esphome {
namespace mdns {
struct MDNSTXTRecord {
std::string key;
TemplatableValue<std::string> value;
};
struct MDNSService {
// service name _including_ underscore character prefix
// as defined in RFC6763 Section 7
std::string service_type;
// second label indicating protocol _including_ underscore character prefix
// as defined in RFC6763 Section 7, like "_tcp" or "_udp"
std::string proto;
TemplatableValue<uint16_t> port;
std::vector<MDNSTXTRecord> txt_records;
};
class MDNSComponent : public Component {
public:
void setup() override;
void dump_config() override;
#if (defined(USE_ESP8266) || defined(USE_RP2040)) && defined(USE_ARDUINO)
void loop() override;
#endif
float get_setup_priority() const override { return setup_priority::AFTER_CONNECTION; }
void add_extra_service(MDNSService service) { services_extra_.push_back(std::move(service)); }
std::vector<MDNSService> get_services();
void on_shutdown() override;
protected:
std::vector<MDNSService> services_extra_{};
std::vector<MDNSService> services_{};
std::string hostname_;
void compile_records_();
};
} // namespace mdns
} // namespace esphome
#endif