瀏覽代碼

解决外网登录过程中的一些问题

johnclot69 1 年之前
父節點
當前提交
7be1d93f86

+ 1 - 1
DotNet/Hotfix/Scenes/Realm/Handler/C2R_LoginHandler.cs

@@ -36,7 +36,7 @@ namespace ET.Server
 			G2R_GetLoginKey g2RGetLoginKey = (G2R_GetLoginKey) await MessageHelper.CallActor(
 				config.InstanceId, new R2G_GetLoginKey() {Account = request.Account});
 
-			response.Address = config.InnerIPOutPort.ToString();
+			response.Address = config.OuterIPPort.ToString();
 			response.Key = g2RGetLoginKey.Key;
 			response.GameId = g2RGetLoginKey.GameId;
 			reply();

+ 7 - 5
Unity/Assets/Scripts/Codes/Hotfix/Client/Demo/Login/LoginHelper.cs

@@ -24,16 +24,18 @@ namespace ET.Client
                 IPEndPoint realmAddress = routerAddressComponent.GetRealmAddress(account);
                 
                 R2C_Login r2CLogin;
-                using (Session session = await RouterHelper.CreateRouterSession(clientScene, realmAddress))
+                using (Session session = clientScene.GetComponent<NetClientComponent>().Create(realmAddress))
+                // using (Session session = await RouterHelper.CreateRouterSession(clientScene, realmAddress))
                 {
                     r2CLogin = (R2C_Login) await session.Call(new C2R_Login() { Account = account, Password = password });
                 }
 
-                // 创建一个gate Session,并且保存到SessionComponent中
-                Session gateSession = await RouterHelper.CreateRouterSession(clientScene, NetworkHelper.ToIPEndPoint(r2CLogin.Address));
-                clientScene.AddComponent<SessionComponent>().Session = gateSession;
+                // 创建一个game Session,并且保存到SessionComponent中
+                Session gameSession = clientScene.GetComponent<NetClientComponent>().Create(NetworkHelper.ToIPEndPoint(r2CLogin.Address));
+                // Session gameSession = await RouterHelper.CreateRouterSession(clientScene, NetworkHelper.ToIPEndPoint(r2CLogin.Address));
+                clientScene.AddComponent<SessionComponent>().Session = gameSession;
 				
-                G2C_LoginGame g2CLoginGame = (G2C_LoginGame)await gateSession.Call(
+                G2C_LoginGame g2CLoginGame = (G2C_LoginGame)await gameSession.Call(
                     new C2G_LoginGame() { Key = r2CLogin.Key, GameId = r2CLogin.GameId});
 
                 Log.Debug("登陆game成功!");

+ 4 - 1
Unity/Assets/Scripts/Codes/Hotfix/Share/ConstValue.cs

@@ -5,7 +5,10 @@ namespace ET
     /// </summary>
     public static class ConstValue
     {
-        public const string RouterHttpHost = "127.0.0.1";
+        // public const string RouterHttpHost = "127.0.0.1";
+        // 阿里云测试服
+        public const string RouterHttpHost = "47.97.163.95";
+        
         public const int RouterHttpPort = 30300;
         
         //session过期时间(毫秒),设置小于等于0时,session永不过期