소스 검색

Reconnect for client implemented

master
Dirk Alders 4 년 전
부모
커밋
3e6e74f976
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7
    0
      __init__.py

+ 7
- 0
__init__.py 파일 보기

@@ -312,6 +312,13 @@ class tcp_client(tcp_base):
312 312
             if self.__connect_callback__ is not None:
313 313
                 self.__connect_callback__()
314 314
 
315
+    def __connection_lost__(self):
316
+        self.__socket__ = None
317
+        tcp_base.__connection_lost__(self)
318
+
319
+    def reconnect(self):
320
+        self.__connect__()
321
+
315 322
 
316 323
 class tcp_base_stp(tcp_base):
317 324
     """

Loading…
취소
저장