1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-16 06:45:48 +00:00
Files
esphome/esphome/components/mdns/mdns_component.h
2022-10-25 16:23:20 +13:00

44 lines
1007 B
C++

#pragma once
#include <string>
#include <vector>
#include "esphome/core/component.h"
namespace esphome {
namespace mdns {
struct MDNSTXTRecord {
std::string key;
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;
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_WIFI; }
protected:
std::vector<MDNSService> services_{};
std::string hostname_;
void compile_records_();
};
} // namespace mdns
} // namespace esphome