Concurrent Connections

so i made a server-client which supports only one client at a time, now i want to expand it to handlle multiple clients,

should i go with threads or processes, mind that i want the one that easy to code and get done with it fast, since my finals are coming i don't want to spend too much time on this.

Thanks for your help
Ease of programming = threads. (if you don't have any direct client to client communication)

I would really really recommend asynchronous sockets however. You can easily handle everything right there on your main thread.
Topic archived. No new replies allowed.