Hi, I have a SlaveService that is listening on port 18811. The client connects and sets the server's stdout, stdin and stderr to its own (client's) stdout, stdin, and stderr.
Once I have one client pretty much bound to the service like this, is there any way to start a new client? Maybe I should create a pool of indentical services on different ports so the input/output streams don't get mixed up? The situation: I'm serving a single service to multiple clients and they may try to use the service simultaneously. They need to interact with the service which is the reason for mapping the stdout, stdin,stderr. rpyc 3.0.7, freebsd 8, python 2.7 thanks, --Tim Arnold
