some printing, should replace with logger
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
1616150c2f
commit
540044c259
@ -136,21 +136,22 @@ class NetWrapper:
|
||||
return False
|
||||
|
||||
def initClientConnection(self, msg: bytes) -> bytes:
|
||||
print('3')
|
||||
print('A client is trying to connect')
|
||||
try:
|
||||
print('4')
|
||||
print('Server and Client identity verification started')
|
||||
self.serverIdentify(msg)
|
||||
print('5')
|
||||
print('Key exchange started')
|
||||
self.keyExchange()
|
||||
print('6')
|
||||
print('Authorization started')
|
||||
success = self.login()
|
||||
print('7')
|
||||
print(f'Authorization completed, success: {success}')
|
||||
if success:
|
||||
return "LINOK".encode('UTF-8')
|
||||
else:
|
||||
self.logout()
|
||||
return "LINERROR".encode('UTF-8')
|
||||
except Exception:
|
||||
print("Error ecountered, resetting")
|
||||
self.logout()
|
||||
return "LINERROR".encode('UTF-8')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user