| 80 | } |
| 81 | |
| 82 | void gotIP(IpAddress ip, IpAddress netmask, IpAddress gateway) |
| 83 | { |
| 84 | if(!fileExist("index.html") || !fileExist("bootstrap.css.gz") || !fileExist("jquery.js.gz")) { |
| 85 | // Download server content at first |
| 86 | downloadContentFiles(); |
| 87 | } else { |
| 88 | startWebServer(); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | } // namespace |
| 93 |
nothing calls this directly
no test coverage detected