I'm working on a live client-server system using TCP. The system must ready 24/7 with cut-off time 30 minutes per day.
For some reasons like testing, I want to add some 'shadow servers' to the system, so that clients will send request to main server and shadow servers. While the request should be sent to all server, only the reply from main server that matters thus should be sent back to client. Reply from shadow servers should be ignored.
Moreover, starting and stopping shadows server mustn't do any harm to the system. If a shadows is up, it will receive request, if it's down, nothing will happen to client-main server.
Is there a way for me to do this without changing either client or main server code? thanks in advanced