Iam1337 / extOSC

extOSC is a tool dedicated to simplify creation of applications in Unity with OSC protocol usage.
MIT License
193 stars 25 forks source link

Is there a way to determine ip of the message sender from the receiver? #19

Closed TheBricktop closed 3 years ago

TheBricktop commented 3 years ago

Im trying to determine whats the ip adress of the sender, so I can send back the confirmation. Is there a way to get the sender IP?

Iam1337 commented 3 years ago

Hi, OSCMessage class contain Ip and Port properties. In the received (via OSCReceiver) OSCMessages, these properties will contain the corresponding data of the sender.

TheBricktop commented 3 years ago

Thank you!