I am trying to create a proxy for UDP in python. Here's the scenario:
Client connects to server on port 6000 from a high random port (say 53273) Server reply to port 53273 from port 55385
Then the communication continue over these two ports.
These 2 port number are only known when the communication is initiated.
The proxy should log all messages in both direction to a text file.
Thank you