代码重构,文件服务器机制优化,服务器端合并所有的高级文件服务器功能。

This commit is contained in:
dathlin
2017-09-17 21:59:45 +08:00
parent 869728db65
commit 78c04eadfb
13 changed files with 865 additions and 165 deletions

View File

@@ -79,11 +79,14 @@ namespace CommonLibrary
/// </summary>
public static int Port_Udp_Server { get; } = 32566;
/// <summary>
/// 头像管理的服务器端口
/// 文件管理的服务器端口
/// </summary>
public static int Port_Portrait_Server { get; } = 24672;
public static int Port_Advanced_File_Server { get; } = 24672;
#endregion
/// <summary>
/// 整个系统的加密解密密码
/// </summary>

View File

@@ -19,7 +19,7 @@ namespace CommonLibrary
/// <summary>
/// 用于同步和异步的网络的身份令牌,提升安全性
/// 用于整个网络服务交互的身份令牌,可有效的防止来自网络的攻击,重新生成令牌后就无法更改,否则不支持自动升级
/// </summary>
public static Guid KeyToken { get; set; } = new Guid("1275BB9A-14B2-4A96-9673-B0AF0463D474");