1
0
forked from mirrors/0ad

Use cpp-httplib instead of mongoose

Use cpp-httplib for Profiler2 and RLInterface instead of mongoose.

Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
Ralph Sennhauser
2024-10-24 19:58:16 +02:00
parent 7e575aa855
commit ba4ef61c15
10 changed files with 307 additions and 334 deletions
+1 -1
View File
@@ -537,7 +537,7 @@ static std::optional<RL::Interface> CreateRLInterface(const CmdLineArgs& args)
g_ConfigDB.Get("rlinterface.address", std::string{}) : args.Get("rl-interface")};
debug_printf("RL interface listening on %s\n", server_address.c_str());
return std::make_optional<RL::Interface>(server_address.c_str());
return std::make_optional<RL::Interface>(server_address);
}
#if CONFIG2_DAP_INTERFACE