1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
| namespace Sodao.FastSocket.Server.Protocol
| {
| /// <summary>
| /// ProtocolNames
| /// </summary>
| static public class ProtocolNames
| {
| /// <summary>
| /// thrift协议
| /// </summary>
| public const string Thrift = "thrift";
| /// <summary>
| /// 命令行协议
| /// </summary>
| public const string CommandLine = "commandLine";
| /// <summary>
| /// 汇像驱动服务协议
| /// </summary>
| public const string HxProtocol = "hxJSON";
| }
| }
|
|