I wrote a c# app that listens to port 8000 and 8001.
There are two different applications that connects to 8000 and 8001. I have used socket arrays so that any number of connections are accepted.
Will I be able to some how attach one 8000 connection and 8001 connection in such a way that what ever data send by the application connected at 8000 will be received by the app at 8001 and vise versa. What is this concept known as ? sorry if this is a very basic question.