11 lines
133 B
C#
11 lines
133 B
C#
namespace Server.ReverseProxy;
|
|
|
|
public enum ReverseProxyCommands
|
|
{
|
|
CONNECT,
|
|
CONNECTRESPONSE,
|
|
DATA,
|
|
DISCONNECT,
|
|
INIT
|
|
}
|