namespace Sodao.FastSocket.Server.Protocol
{
///
/// ProtocolNames
///
static public class ProtocolNames
{
///
/// thrift协议
///
public const string Thrift = "thrift";
///
/// 命令行协议
///
public const string CommandLine = "commandLine";
///
/// 汇像驱动服务协议
///
public const string HxProtocol = "hxJSON";
}
}