2 way UDP proxy in python -
i trying create proxy udp in python. here's scenario:
client connects server on port 6000 high random port (say 53273) server reply port 53273 port 55385
then communication continue on these 2 ports.
these 2 port number known when communication initiated.
the proxy should log messages in both direction text file.
thank you
i start this:
http://docs.python.org/library/socketserver.html#asynchronous-mixins
this threaded socket server built python. can use serve main port , call handler whenever client connects. you'll need threaded since sounds running type of chatroom logging.
Comments
Post a Comment