Home
last modified time | relevance | path

Searched refs:streamId (Results 1 – 2 of 2) sorted by relevance

/openbmc/bmcweb/http/
H A Dhttp2_connection.hpp144 nghttp2_session* /* session */, int32_t streamId, uint8_t* buf, in fileReadCallback() argument
150 auto streamIt = self.streams.find(streamId); in fileReadCallback()
211 int sendResponse(Response& completedRes, int32_t streamId) in sendResponse() argument
213 BMCWEB_LOG_DEBUG("send_response stream_id:{}", streamId); in sendResponse()
215 auto it = streams.find(streamId); in sendResponse()
252 int rv = ngSession.submitResponse(streamId, hdr, &dataPrd); in sendResponse()
279 int onRequestRecv(int32_t streamId) in onRequestRecv() argument
283 auto it = streams.find(streamId); in onRequestRecv()
312 [this, streamId](Response& completeRes) { in onRequestRecv()
314 if (sendResponse(completeRes, streamId) != 0) in onRequestRecv()
[all …]
H A Dnghttp2_adapters.hpp169 int submitResponse(int32_t streamId, std::span<const nghttp2_nv> headers, in submitResponse()
172 return nghttp2_submit_response(ptr, streamId, headers.data(), in submitResponse()