xref: /openbmc/bmcweb/http/http_connect_types.hpp (revision 796ba93b48f7866630a3c031fd6b01c118202953)
1 #pragma once
2 
3 namespace crow
4 {
5 enum class HttpType
6 {
7     HTTPS, // Socket supports HTTPS only
8     HTTP,  // Socket supports HTTP only
9     BOTH   // Socket supports both HTTPS and HTTP, with HTTP Redirect
10 };
11 }
12