int webServerPort = -1;
void configure(std::string responseFile, callback_function call_back, std::string urlRegex = NULL) {
std::string url = "https://0.0.0.0:" + webServerPort + "fake_settings/?file=" + responseFile;
if(urlRegex != NULL) { // GOT ERROR HERE
url += "&pattern=" + urlRegex;
}
int webServerPort = -1;
void configure(std