Lines Matching full:payload
116 * Encapsulation Under RMCP). IPMI payload is a special class of data
165 * @brief Extract the command from the IPMI payload
177 reinterpret_cast<LAN::header::Request*>(payload.data()); in getCommand()
187 * The IPMI outgoing message is constructed out of payload and the
188 * corresponding fields are populated. For the payload type IPMI, the
191 * @param[in] output - Payload for outgoing message
208 outMessage->payload.resize( in createResponse()
213 reinterpret_cast<LAN::header::Request*>(payload.data()); in createResponse()
215 outMessage->payload.data()); in createResponse()
229 outMessage->payload.begin() + assembledSize); in createResponse()
234 outMessage->payload.data() + assembledSize); in createResponse()
239 outMessage->payload = output; in createResponse()
246 PayloadType payloadType; // Type of message payload (IPMI,SOL ..etc)
255 /** @brief Message payload
259 * Payloads can be ‘standard’ or ‘OEM’.Standard payload types include IPMI
260 * Messages, messages for session setup under RMCP+, and the payload for
263 std::vector<uint8_t> payload; member