content="<h1>Not Found</h1><p>The requested URL "+urlStr+" was not found on this server.</p>";
mimeType="text/html";
httpResponseCode=MHD_HTTP_NOT_FOUND;
}
}else{
if(verboseFlag)
cout<<"Failed to find "<<urlStr<<endl;
content="<html><head><title>Content not found</title></head><body><h1>Not Found</h1><p>The requested URL "+urlStr+" was not found on this server.</p></body></html>";
mimeType="text/html";
httpResponseCode=MHD_HTTP_NOT_FOUND;
}
}catch(conststd::exception&e){
std::cerr<<e.what()<<std::endl;
@ -289,12 +291,10 @@ static int accessHandlerCallback(void *cls,