I'm starting to write an udp server to match two clients together and allow them to send/receive data to/from each other.
It's for a multiplayer game, and my goal is to create a p2p-like connection but with the intermediary server I'll make sure it will always work, even in cases where the user has a firewall, or is behind a nat. The server should hande several matches (pairs of clients), I'm writing it in python and it's a bit harder than what I thought.

Is there any open source code for a server similar to this?

link|improve this question

76% accept rate
feedback

2 Answers

This details how to write a UDP server in Python.

link|improve this answer
feedback

Take a look at the ZeroMq (0MQ) framework as an alternative to creating your own messaging. There's a python binding (pyzmq) for it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.