mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	List webserver service on MDNS if enabled. (#3662)
This commit is contained in:
		| @@ -68,6 +68,16 @@ void MDNSComponent::compile_records_() { | |||||||
|   } |   } | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|  | #ifdef USE_WEBSERVER | ||||||
|  |   { | ||||||
|  |     MDNSService service{}; | ||||||
|  |     service.service_type = "_http"; | ||||||
|  |     service.proto = "_tcp"; | ||||||
|  |     service.port = USE_WEBSERVER_PORT; | ||||||
|  |     this->services_.push_back(service); | ||||||
|  |   } | ||||||
|  | #endif | ||||||
|  |  | ||||||
|   if (this->services_.empty()) { |   if (this->services_.empty()) { | ||||||
|     // Publish "http" service if not using native API |     // Publish "http" service if not using native API | ||||||
|     // This is just to have *some* mDNS service so that .local resolution works |     // This is just to have *some* mDNS service so that .local resolution works | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user