Thanks,
Chris
> Is there a way to differentiate between the
> local service and services that have originated from other devices?
Compare the service name to the one you’ve published. (You have to compare to your actual service name, not the name you asked for, because it might have been disambiguated by appending a digit to it.)
—Jens
This will give you the updated name:
[[MyBlipListener bonjourService] name];
This will give you the name you asked for:
[MyBlipListener bonjourServiceName];
At least this seems to be the case for me.
-Chris