Home | History | Annotate | Download | only in connect-devices-wirelessly

Lines Matching full:network

1 page.title=Using Network Service Discovery
13 <li><a href="#register">Register Your Service on the Network</a></li>
14 <li><a href="#discover">Discover Services on the Network</a></li>
15 <li><a href="#connect">Connect to Services on the Network</a></li>
36 <p>Adding Network Service Discovery (NSD) to your app allows your users to
37 identify other devices on the local network that support the services your app
43 name and connection information to the local network and scan for information
47 <h2 id="register">Register Your Service on the Network</h2>
50 you don't care about broadcasting your app's services over the local network,
52 next section, <a href="#discover">Discover Services on the Network</a>.</p>
54 <p>To register your service on the local network, first create a {@link
56 that other devices on the network use when they're deciding whether to connect to your
65 // with other services advertised on the same network.
74 The name is visible to any device on the network that is using NSD to look for
76 network, and Android automatically handles conflict resolution. If
77 two devices on the network both have the NsdChat application installed, one of
85 offering a printer service (for instance, a network printer) would set the
183 <h2 id="discover">Discover Services on the Network</h2>
184 <p>The network is teeming with life, from the beastly network printers to the
185 docile network webcams, to the brutal, fiery battles of nearby tic-tac-toe
188 broadcasts on the network to see what services are available, and filter out
231 // When the network service is no longer available.
273 application wants to connect to a network printer, it's enough to see that the service type
287 <h2 id="connect">Connect to Services on the Network</h2>
288 <p>When your application finds a service on the network to connect to, it
323 you need to create your own network connection to the service.</p>