Skip to content

Instantly share code, notes, and snippets.

@thisismyrobot
Created October 17, 2015 23:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thisismyrobot/ba8c532425a6c5049516 to your computer and use it in GitHub Desktop.
Save thisismyrobot/ba8c532425a6c5049516 to your computer and use it in GitHub Desktop.
Configuring SocketServer.UDPServer to receive Parrot Jumping Sumo UDP video packets
import SocketServer
if __name__ == '__main__':
server = SocketServer.UDPServer((HOST, PORT), UDPHandler)
server.max_packet_size = 65000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment