Searched refs:HttpType (Results 1 – 7 of 7) sorted by relevance
| /openbmc/bmcweb/http/ |
| H A D | app.hpp | 82 static HttpType getHttpType(std::string_view socketTypeString) in getHttpType() 87 return HttpType::HTTP; in getHttpType() 92 return HttpType::HTTPS; in getHttpType() 97 return HttpType::BOTH; in getHttpType() 103 return HttpType::HTTPS; in getHttpType() 132 HttpType httpType = getHttpType(socknameComponents[2]); in setupSocket() 154 acceptors.emplace_back(std::move(acc), HttpType::HTTPS); in setupSocket()
|
| H A D | http_connection.hpp | 79 Connection(Handler* handlerIn, HttpType httpTypeIn, 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() 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() 845 if (httpType == HttpType::HTTP) in doWrite() [all …]
|
| H A D | http_connect_types.hpp | 5 enum class HttpType enum
|
| H A D | http2_connection.hpp | 71 std::function<std::string()>& getCachedDateStrF, HttpType httpTypeIn, 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;
|
| H A D | http_server.hpp | 36 HttpType httpType; 128 void afterAccept(SocketPtr socket, HttpType httpType, in afterAccept()
|
| /openbmc/bmcweb/test/http/ |
| H A D | http_connection_test.cpp | 84 &handler, HttpType::HTTP, std::move(timer), date, in TEST()
|
| H A D | http2_connection_test.cpp | 133 &handler, date, HttpType::HTTP, nullptr); in TEST()
|