Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find all available services using Android's native Network Service Discovery

I've read through android documentation on finding specific network services using NSD. Below is my code to discover all the available _http._tcp services.

final NsdManager.DiscoveryListener discoveryListener = new NsdManager.DiscoveryListener() {
    @Override
    public void onDiscoveryStarted(String s) {
        Log.i(TAG, "onDiscoveryStarted: " + s);
    }

    @Override
    public void onServiceFound(NsdServiceInfo nsdServiceInfo) {
        Log.i(TAG, "onServiceFound: " + nsdServiceInfo.toString());
    }

    @Override
    public void onServiceLost(NsdServiceInfo nsdServiceInfo) {
        Log.i(TAG, "onServiceLost: " + nsdServiceInfo.toString());
    }

    @Override
    public void onDiscoveryStopped(String s) {
        Log.i(TAG, "onDiscoveryStopped: " + s);
    }

    @Override
    public void onStartDiscoveryFailed(String s, int i) {
        Log.i(TAG, "onStartDiscoveryFailed: " + s);
    }

    @Override
    public void onStopDiscoveryFailed(String s, int i) {
        Log.i(TAG, "onStopDiscoveryFailed: " + s);
    }
};

final NsdManager manager = (NsdManager) getSystemService(Context.NSD_SERVICE);
manager.discoverServices("_http._tcp", NsdManager.PROTOCOL_DNS_SD, discoveryListener);

Till this point everything's working fine. However, I'm wondering how to find all the available services on the network using this approach? I can see there are a dozen of different services (e.g. _ipp._tcp, _airport._tcp, _airplay._tcp, _atc._tcp and many more) available on my local network using ZeroConf browsing apps found on Google PlayStore.

Is there any wildcard that allows to gather all the available services through single discovery-listener since I couldn't find such information on developer pages?

like image 410
waqaslam Avatar asked Aug 02 '16 14:08

waqaslam


People also ask

What is Discovery Service Android?

Network service discovery (NSD) gives your app access to services that other devices provide on a local network. Devices that support NSD include printers, webcams, HTTPS servers, and other mobile devices.

What is service discovery in networking?

Service discovery is the process of automatically detecting devices and services on a network. Service discovery protocol (SDP) is a networking standard that accomplishes detection of networks by identifying resources.


2 Answers

change your service with _services._dns-sd._udp i have too and it working in nsd but in jmdns its not working

like image 150
Michael Indra Pramana Avatar answered Sep 23 '22 00:09

Michael Indra Pramana


http://www.ietf.org/rfc/rfc6763.txt chapter 9 says, you should use _services._dns-sd._udp as service name to get a enumeration of service names. This also works with NSD

like image 35
Flo Avatar answered Sep 21 '22 00:09

Flo