We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Implement your own authentication in src/heapauth.cpp
For example:
bool heaphttpd_usrdef_get_password(CHttp* psession, const char* username, string& password) { if(strcasecmp(username, "admin") == 0) { password = "Passw0rd"; return true; } else { return false; } }