Skip to content

Commit 9d79d7e

Browse files
committed
Remove timeout settings
1 parent c1d943d commit 9d79d7e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

plugin/ida_mcp_server_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def start(self) -> bool:
4848
self.server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
4949
self.server_socket.bind((self.host, self.port))
5050
self.server_socket.listen(5)
51-
self.server_socket.settimeout(1.0) # Set timeout to allow server to respond to stop requests
51+
# self.server_socket.settimeout(1.0) # Set timeout to allow server to respond to stop requests
5252

5353
self.running = True
5454
self.thread = threading.Thread(target=self.server_loop)

test/IDA Debug.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@
2020
print(core.get_current_function_assembly())
2121
print(core.get_function_decompiled_by_name("-[SPSpotlightPanel canBecomeMainWindow]"))
2222
print(core.get_function_assembly_by_name("-[SPSpotlightPanel canBecomeMainWindow]"))
23+
print(core.rename_local_variable("-[SPIndexingView init]", "v3", "label"))
2324
# idapro.close_database()

0 commit comments

Comments
 (0)