-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allows users to launch a server on port other than 50051. Also allows attaching to existing process. ```py s1 = launch_session(<EM_DIR>) ``` > TCP 127.0.0.1:50051 0.0.0.0:0 LISTENING 15848 ```py s1.disconnect() s2 = launch_session(<EM_DIR>, 50052) ``` > TCP 127.0.0.1:50052 0.0.0.0:0 LISTENING 29652 ```py s2.disconnect() <manually launch EDB_RPC_Server on port 50053> s3 = attach_session(port_num: 50053) ``` > TCP 127.0.0.1:50053 0.0.0.0:0 LISTENING 21696 ```py s3.disconnect() s4 = launch_session(<EM_DIR>, 50054) ``` > TCP 127.0.0.1:50053 0.0.0.0:0 LISTENING 21696 > TCP 127.0.0.1:50054 0.0.0.0:0 LISTENING 27668 ```
- Loading branch information
Showing
1 changed file
with
51 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters