소스 검색

no message

SK.Kang 6 년 전
부모
커밋
83e8196cb7
2개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      Dev/Connection/OHVProtocolServer/OHVConnector/Manager.cs
  2. 3 0
      Dev/Connection/OHVProtocolServer/OHVConnector/OCSMessage.cs

+ 1 - 2
Dev/Connection/OHVProtocolServer/OHVConnector/Manager.cs

@@ -105,10 +105,9 @@ namespace OHVConnector
 
                 ThreadUtils.Kill(_TLINK);
                 ThreadUtils.Kill(_TW);
-                h.StopListen();//20170720 연결 시도중(passive listening)에 disconnect blocking patch.
+                h.StopListen();
                 ThreadUtils.Kill(_TR);
 
-                //h.StopListen(); 20170720
                 h.CloseSocket();//Kill을 사용할 경우 뒤에 존재해야 한다.
             }
         }

+ 3 - 0
Dev/Connection/OHVProtocolServer/OHVConnector/OCSMessage.cs

@@ -47,8 +47,11 @@ namespace OHVConnector
         public string SubCode { get; set; }
         public byte CheckSum { get; set; }
 
+        public IList<string> ViaRouteList { get; set; }
+
         public OCSMessage()
         {
+            this.ViaRouteList = new List<string>();
         }
 
         public string LogFormat()