Filter Incoming OSC to a specific origin IP

Is it possible to restrict the updating of a widget via OSC a specific IP address of origin? If I have a message being sent by two different computers to a single instance of O-S-C, I’d like to be able to separately demonstrate their values via text widgets. I haven’t been able to figure it out; so far the message from either computer updates both widgets, as they are identical addresses. Thank you.

Widgets can't differentiate identical osc messages from different origins, you'll need to filter them using a custom module (oscInFilter function) and alter them (changing either the address or the arguments) to route them to different widgets.

I'll look into this more...thanks.

See How could i make a widget to react only on a special udp osc input port?