GP-0: Fix forgotten Client() description parameter.

This commit is contained in:
Dan 2023-12-04 10:43:06 -05:00
parent f0f5b8f2a4
commit 0d03ce2f14
3 changed files with 5 additions and 4 deletions

View file

@ -174,7 +174,7 @@ def ghidra_trace_listen(address='0.0.0.0:0'):
c, (chost, cport) = s.accept()
s.close()
print("Connection from {}:{}\n".format(chost, cport))
STATE.client = Client(c, "TBD", methods.REGISTRY)
STATE.client = Client(c, "dbgeng.dll", methods.REGISTRY)
except ValueError:
raise RuntimeError("port must be numeric")