|
|
|
|
198
|
def is_connected(self):
|
198
|
def is_connected(self):
|
199
|
return self.__comm_inst__.is_connected()
|
199
|
return self.__comm_inst__.is_connected()
|
200
|
|
200
|
|
|
|
201
|
+ def reconnect(self):
|
|
|
202
|
+ return self.__comm_inst__.reconnect()
|
|
|
203
|
+
|
201
|
def __authentification_state_reset__(self):
|
204
|
def __authentification_state_reset__(self):
|
202
|
logger.info("%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", self.LOG_PREFIX)
|
205
|
logger.info("%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", self.LOG_PREFIX)
|
203
|
self.__authentification_state__ = self.AUTH_STATE_UNKNOWN_CLIENT
|
206
|
self.__authentification_state__ = self.AUTH_STATE_UNKNOWN_CLIENT
|