MCPcopy Create free account
hub / github.com/Hieromon/AutoConnect / setup

Method setup

examples/WebUpdate/HTTPUpdateServer.h:23–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21 explicit HTTPUpdateServer(bool serial_debug = false) : _serial_output(serial_debug), _server(nullptr), _username(_emptyString), _password(_emptyString), _authenticated(false) {}
22 ~HTTPUpdateServer() {}
23 void setup(WebServer* server) { setup(server, _emptyString, _emptyString); }
24 void setup(WebServer* server, const String& path) { setup(server, path, _emptyString, _emptyString); }
25 void setup(WebServer* server, const String& username, const String& password) { setup(server, "/update", username, password); }
26 void setup(WebServer* server, const String& path, const String& username, const String& password);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected