Stop using cv2pdb and improve HTTP handling a little

This commit is contained in:
2023-07-03 15:18:21 -04:00
parent ea10bddb0b
commit af62ac040f
4 changed files with 36 additions and 16 deletions

View File

@@ -421,6 +421,13 @@ public:
// Synthesize an error and store it in lua.
//
static void store_fail(LuaCoreStack &LS, LuaSlot tab, int status, std::string_view error);
// Convert a path component into a lua identifier.
//
// Returns the empty string if the path component cannot be converted
// to a lua identifier.
//
static eng::string to_lua_identifier(std::string_view pathcomp);
};
class HttpClientRequestMap : public eng::map<int64_t, HttpClientRequest> {