|
1 |
| -# clue/mdns-react [](https://travis-ci.org/clue/php-mdns-react) |
| 1 | +# clue/reactphp-mdns [](https://travis-ci.org/clue/reactphp-mdns) |
2 | 2 |
|
3 |
| -Simple, async multicast DNS (mDNS) resolver library, built on top of [React PHP](http://reactphp.org/). |
| 3 | +Simple, async multicast DNS (mDNS) resolver for zeroconf networking, built on top of [ReactPHP](https://reactphp.org/). |
4 | 4 |
|
5 | 5 | [Multicast DNS](http://www.multicastdns.org/) name resolution is commonly used
|
6 | 6 | as part of [zeroconf networking](http://en.wikipedia.org/wiki/Zero-configuration_networking).
|
@@ -68,7 +68,7 @@ $resolver = $factory->createResolver();
|
68 | 68 |
|
69 | 69 | The [`Factory`](#factory) creates instances of the `React\Dns\Resolver\Resolver` class from the [react/dns](https://github.com/reactphp/dns) package.
|
70 | 70 |
|
71 |
| -While React's *normal* DNS resolver uses unicast UDP messages (and TCP streams) to query a given nameserver, |
| 71 | +While ReactPHP's *normal* DNS resolver uses unicast UDP messages (and TCP streams) to query a given nameserver, |
72 | 72 | this resolver instance uses multicast UDP messages to query all reachable hosts in your network.
|
73 | 73 |
|
74 | 74 | #### Promises
|
@@ -96,7 +96,7 @@ Please refer to the [DNS documentation](https://github.com/reactphp/dns#readme)
|
96 | 96 | As stated above, this library provides you a powerful, async API by default.
|
97 | 97 |
|
98 | 98 | If, however, you want to integrate this into your traditional, blocking environment,
|
99 |
| -you should look into also using [clue/block-react](https://github.com/clue/php-block-react). |
| 99 | +you should look into also using [clue/reactphp-block](https://github.com/clue/reactphp-block). |
100 | 100 |
|
101 | 101 | The resulting blocking code could look something like this:
|
102 | 102 |
|
@@ -128,7 +128,7 @@ $promises = array(
|
128 | 128 | $ips = Block\awaitAll($promises, $loop);
|
129 | 129 | ```
|
130 | 130 |
|
131 |
| -Please refer to [clue/block-react](https://github.com/clue/php-block-react#readme) for more details. |
| 131 | +Please refer to [clue/reactphp-block](https://github.com/clue/reactphp-block#readme) for more details. |
132 | 132 |
|
133 | 133 | ## Install
|
134 | 134 |
|
|
0 commit comments