Lines Matching full:response
6 - Register a PLDM request and the response handler to be invoked on receiving
7 the response.
8 - The handling of the request and response is asynchronous. This means the PLDM
9 daemon is not blocked till the response is received for a request.
11 - Request retries based on the time-out waiting for a response.
22 PLDM request message (PLDM header and payload) and response function handler are
31 The signature of the response function handler:
34 void handler(mctp_eid_t eid, const pldm_msg* response, size_t respMsgLen)
37 - If the response is received before instance ID expiration:
38 - If the response matches with an outstanding request then the response
40 - If the response does not match with the PLDM instance ID, PLDM type and PLDM
42 response.
43 - Once the instance ID is expired, then the response handler is invoked with
44 empty response, so that further action can be taken.