Problem: a simple UDP proxy - receiving UDP packets from several sources on port X and forwarding (forwarding) them to IP Y on port Z.
Description. I can create a simple UDP server using twisted ones and easily receive incoming packets. However, I cannot find a way to resend these packets (their data) further using Twisted. Is there any specific, kosher and twist-like way to do this in a twisted order, or should I use the simple pockon sock.sendto method in a method that processes the received data in Twisted?
source
share