LeviLamina
Loading...
Searching...
No Matches
proxy_protocol.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace xbox::httpclient {
6
7enum class proxy_protocol : int {
8 Http = 0,
9 Https = 1,
10 Ftp = 2,
11 Websocket = 3,
12};
13
14}