├── .gitignore ├── LICENCE.txt ├── README.md ├── examples ├── mdns_test │ ├── README.md │ └── mdns_test.ino ├── simple │ └── simple.ino └── simple_responder │ ├── README.md │ └── simple_responder.ino ├── library.json ├── library.properties ├── mdns.cpp └── mdns.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/README.md -------------------------------------------------------------------------------- /examples/mdns_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/examples/mdns_test/README.md -------------------------------------------------------------------------------- /examples/mdns_test/mdns_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/examples/mdns_test/mdns_test.ino -------------------------------------------------------------------------------- /examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/examples/simple/simple.ino -------------------------------------------------------------------------------- /examples/simple_responder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/examples/simple_responder/README.md -------------------------------------------------------------------------------- /examples/simple_responder/simple_responder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/examples/simple_responder/simple_responder.ino -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/library.properties -------------------------------------------------------------------------------- /mdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/mdns.cpp -------------------------------------------------------------------------------- /mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdunk/esp8266_mdns/HEAD/mdns.h --------------------------------------------------------------------------------