DMTF / spdm-emu

BSD 3-Clause "New" or "Revised" License
32 stars 44 forks source link

Port_index in CXL_IDE_QUERY_RSP is not assigned with the port_index from the corresponding QUERY request #377

Closed tzeyeeng closed 1 month ago

tzeyeeng commented 1 month ago

In cxl_ide_km_get_response_query, the sequence below is missing. ide_km_response->port_index = ide_km_request->port_index;

This is causing the requester failed in the condition of response.port_index != request.port_index.

After adding it in cxl_ide_km_get_response_query, the failure is resolved.