OpenBMC:BmcWeb 處理http請求1 生成Request和AsyncResp對象_bmc web-CSDN博客
當接收到http請求,并且完成解析后,調用了App::handle處理請求
而App::handle又調用了router.handle(req, asyncResp);來處理請求
1.Router::handle
void handle(const std::shared_ptr<Request>& req,const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
{FindRouteResponse foundRoute = findRoute(*req);...
}struct FindRout