This commit is contained in:
parent
2643d14c63
commit
7fb2a000a7
1 changed files with 2 additions and 1 deletions
|
@ -251,7 +251,7 @@ def session(connection, client, ip, isssl=False):
|
||||||
try:
|
try:
|
||||||
identQuery = getident(client[0], client[1], isssl)
|
identQuery = getident(client[0], client[1], isssl)
|
||||||
responseee = identQuery["response"]
|
responseee = identQuery["response"]
|
||||||
print(identQUery)
|
print(identQuery)
|
||||||
if identQuery["success"] == True:
|
if identQuery["success"] == True:
|
||||||
connection.sendall(bytes(f":{server} NOTICE * :*** Uhm, Couldn't find your ident: {responseee}\r\n","UTF-8"))
|
connection.sendall(bytes(f":{server} NOTICE * :*** Uhm, Couldn't find your ident: {responseee}\r\n","UTF-8"))
|
||||||
else:
|
else:
|
||||||
|
@ -259,6 +259,7 @@ def session(connection, client, ip, isssl=False):
|
||||||
clident = responseee
|
clident = responseee
|
||||||
rident = responseee
|
rident = responseee
|
||||||
except:
|
except:
|
||||||
|
print(traceback.format_exc())
|
||||||
connection.sendall(bytes(f":{server} NOTICE * :*** Uhm, Couldn't find your ident: Unknown error.\r\n","UTF-8"))
|
connection.sendall(bytes(f":{server} NOTICE * :*** Uhm, Couldn't find your ident: Unknown error.\r\n","UTF-8"))
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Reference in a new issue