I want to create a server and client that sends and receives UDP packets from the network using Twisted. I\'ve already written this with sockets in Python, but want to take adva
Since UDP is pretty much symmetrical between client and server, you just want to run reactor.listenUDP there too, connect to the server (which really just sets the default destination for sent packets), then transport.write to send your packets.