namespace FastGithub.HttpServer.TcpMiddlewares { /// /// 代理协议 /// enum ProxyProtocol { /// /// 无代理 /// None, /// /// http代理 /// HttpProxy, /// /// 隧道代理 /// TunnelProxy } }