> What I want to do is accept multiple TCP connections, but yet, PIPE all the > DATA into one single TCP connection?
Depending on the performance you need, I'd look at:
from slowest/easiest to fastest/hardest (though still not too hard)
- The netcat utitlity + simple shell scripts
- Perl script (Perl makes sockets easy)
- C program (grab a copy of Stevens' book)
- Scott

