[RESOLVED] Multiple connections - WinSock
Hi guys i have winsock installed on a program just before i spend hours of time googleing is it possible to make connect to and send a message to more than one server at once with winsock or do i need to place a new instance of it on the form. its a udp connection if that is relevent thanks
Re: Multiple connections - WinSock
I think you will need multiple instances.
Re: Multiple connections - WinSock
Re: Multiple connections - WinSock
You're sending data from the client to multiple servers? :ehh:
Or do you mean the other way around?
You should be able to do it with one instance by doing a loop. The data won't get sent simultaneously, but one right after the other. For something even close to simultaneous you would have to use multi threading/send data from another process.
Re: Multiple connections - WinSock
Thanks did it with a loop thanks prompt repsonses