Re: [LAD] python-osc udp_client.UDPClient() - How do I figure out the reply-to IP?

2016-07-06 Thread Christopher Arndt
Am 06.07.2016 um 08:59 schrieb Christopher Arndt: It's not uncommon for OSC software, that you have to specify client (a) address(es) in the server as well, since OSC, commonly using UDP as a transport, is only uni-directional, so to get bi-directional communication, every participant in an OSC c

Re: [LAD] python-osc udp_client.UDPClient() - How do I figure out the reply-to IP?

2016-07-06 Thread Francesco Ceruti
Il 06/07/2016 01:38, Kevin Cole ha scritto: Hi, In pythonosc (https://pypi.python.org/pypi/python-osc) after connecting with udp_client.UDPClient(...) from a "client", how can I detect the IP to respond to in the "server"? If I explicitly supply the return IP in the server's udp_client.UDPClien

Re: [LAD] python-osc udp_client.UDPClient() - How do I figure out the reply-to IP?

2016-07-06 Thread Kevin Cole
The responses from everyone are improving my understanding... I think. Thanks all. On Wed, Jul 6, 2016 at 2:59 AM, Christopher Arndt wrote: > It's not uncommon for OSC software, that you have to specify client (a) > address(es) in the server as well, since OSC, commonly using UDP as a > transpor

Re: [LAD] python-osc udp_client.UDPClient() - How do I figure out the reply-to IP?

2016-07-06 Thread Kevin Cole
On Wed, Jul 6, 2016 at 3:01 AM, Christopher Arndt wrote: > I forgot: if you only have clients in the local network, you could also just > send packets to the broadcast address (use ifconfig to look it up). Oooo. This seems simplest of all. "Me likey!" ;-) ___

Re: [LAD] python-osc udp_client.UDPClient() - How do I figure out the reply-to IP?

2016-07-06 Thread Len Ovens
On Wed, 6 Jul 2016, Christopher Arndt wrote: Am 06.07.2016 um 01:38 schrieb Kevin Cole: In pythonosc (https://pypi.python.org/pypi/python-osc) after connecting with udp_client.UDPClient(...) from a "client", how can I detect the IP to respond to in the "server"? Normally, with UDP servers, yo