mirror of
https://github.com/esp8266/Arduino.git
synced 2025-09-08 06:28:00 +03:00
12 lines
239 B
C++
12 lines
239 B
C++
#include <ESP8266mDNS.h>
|
|
|
|
/*
|
|
MDNS responder global instance
|
|
|
|
Class type that is instantiated depends on the type mapping in ESP8266mDNS.h
|
|
*/
|
|
#if !defined(NO_GLOBAL_INSTANCES) && !defined(NO_GLOBAL_MDNS)
|
|
MDNSResponder MDNS;
|
|
#endif
|
|
|