It would be nice if we could specific a custom destination IP and/or port as optional arguments in the send() method of the udpOutDAT (and osc for that matter I assume).
I have a setup with several elements in my network communicating via UDP. A lot of the stuff is done via broadcast and I would like to not have to create a custom UDP-OutDAT for every client in the network when the comm is happening via unicast.
op("udpout").send("myMessage", ip = "192.168.0.200", port = 5000 )
I suppose I could use the socket module of python instead, but I like to keep it nody