nodemcu_mdns.h 296 B

12345678910111213141516
  1. #ifndef _NODEMCU_MDNS_H
  2. #define _NODEMCU_MDNS_H
  3. struct nodemcu_mdns_info {
  4. const char *host_name;
  5. const char *host_desc;
  6. const char *service_name;
  7. uint16 service_port;
  8. const char *txt_data[10];
  9. };
  10. void nodemcu_mdns_close(void);
  11. bool nodemcu_mdns_init(struct nodemcu_mdns_info *);
  12. #endif