├── .gitattributes ├── README.md ├── examples ├── CaptivePortal │ └── CaptivePortal.ino ├── CaptivePortalAdvanced │ ├── CaptivePortalAdvanced.ino │ ├── credentials.ino │ ├── handleHttp.ino │ └── tools.ino └── DNSServer │ └── DNSServer.ino ├── library.properties └── src ├── DNSServer.cpp └── DNSServer.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/README.md -------------------------------------------------------------------------------- /examples/CaptivePortal/CaptivePortal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/examples/CaptivePortal/CaptivePortal.ino -------------------------------------------------------------------------------- /examples/CaptivePortalAdvanced/CaptivePortalAdvanced.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/examples/CaptivePortalAdvanced/CaptivePortalAdvanced.ino -------------------------------------------------------------------------------- /examples/CaptivePortalAdvanced/credentials.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/examples/CaptivePortalAdvanced/credentials.ino -------------------------------------------------------------------------------- /examples/CaptivePortalAdvanced/handleHttp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/examples/CaptivePortalAdvanced/handleHttp.ino -------------------------------------------------------------------------------- /examples/CaptivePortalAdvanced/tools.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/examples/CaptivePortalAdvanced/tools.ino -------------------------------------------------------------------------------- /examples/DNSServer/DNSServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/examples/DNSServer/DNSServer.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/library.properties -------------------------------------------------------------------------------- /src/DNSServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/src/DNSServer.cpp -------------------------------------------------------------------------------- /src/DNSServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhouhan0126/DNSServer---esp32/HEAD/src/DNSServer.h --------------------------------------------------------------------------------