I have a single client that is trying to connect to my main server using socket s1. The client needs to keep trying to connect to main server with s1, but at the same time c
If your program is a client to multiple servers, use one socket per server. You don't need bind for a client socket at all, just connect.
bind
connect