Home
last modified time | relevance | path

Searched refs:httpType (Results 1 – 4 of 4) sorted by relevance

/openbmc/bmcweb/http/
H A Dhttp_connection.hpp83 httpType(httpTypeIn), adaptor(std::move(adaptorIn)), handler(handlerIn), in Connection()
180 if (httpType != HttpType::HTTPS && httpType != HttpType::BOTH) in afterDetectSsl()
187 httpType = HttpType::HTTPS; in afterDetectSsl()
195 if (httpType != HttpType::HTTP && httpType != HttpType::BOTH) in afterDetectSsl()
203 httpType = HttpType::HTTP; in afterDetectSsl()
288 std::move(adaptor), handler, getCachedDateStr, httpType, in upgradeToHttp2()
356 if (httpType == HttpType::HTTP) in doUpgrade()
473 if (httpType == HttpType::HTTPS) in gracefulClose()
672 if (httpType == HttpType::HTTP) in doReadHeaders()
753 if (httpType == HttpType::HTTP) in doRead()
[all …]
H A Dhttp_server.hpp36 HttpType httpType; member
128 void afterAccept(SocketPtr socket, HttpType httpType, in afterAccept() argument
148 handler, httpType, std::move(timer), getCachedDateStr, in afterAccept()
168 accept.httpType)); in doAccept()
H A Dapp.hpp132 HttpType httpType = getHttpType(socknameComponents[2]); in setupSocket() local
142 httpType}); in setupSocket()
H A Dhttp2_connection.hpp73 httpType(httpTypeIn), adaptor(std::move(adaptorIn)), in HTTP2Connection()
604 if (httpType == HttpType::HTTPS) in writeBuffer()
610 else if (httpType == HttpType::HTTP) in writeBuffer()
661 if (httpType == HttpType::HTTPS) in doRead()
667 else if (httpType == HttpType::HTTP) in doRead()
681 HttpType httpType = HttpType::BOTH; member in crow::HTTP2Connection