summaryrefslogtreecommitdiff
path: root/http/http_connect_types.hpp
blob: da9d57634fffe100045cbb81269cc8831a61c5fc (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

namespace crow
{
enum class HttpType
{
    HTTPS, // Socket supports HTTPS only
    HTTP,  // Socket supports HTTP only
    BOTH   // Socket supports both HTTPS and HTTP, with HTTP Redirect
};
}