You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,11 @@
3
3
Simple, async multicast DNS (mDNS) resolver library, built on top of [React PHP](http://reactphp.org/).
4
4
5
5
[Multicast DNS](http://www.multicastdns.org/) name resolution is commonly used
6
-
as part of [zeroconf networking](http://en.wikipedia.org/wiki/Zero-configuration_networking)
7
-
ala Bonjour/Avahi.
8
-
It is defined in [RFC 6762](http://tools.ietf.org/html/rfc6762), in particular
9
-
this specification also highlights the
10
-
[differences to normal DNS operation](http://tools.ietf.org/html/rfc6762#section-19).
6
+
as part of [zeroconf networking](http://en.wikipedia.org/wiki/Zero-configuration_networking).
7
+
It is used by Mac OS X (Bonjour), many Linux distributions (Avahi) and quite a few other networking devices such as printers, camers etc. to resolve hostnames of your local LAN clients to IP addresses.
11
8
12
-
The mDNS protocol is related to, but independent of, DNS-Based Service Discovery (DNS-SD)
9
+
This library implements the mDNS protocol as defined in [RFC 6762](http://tools.ietf.org/html/rfc6762).
10
+
Note that this protocol is related to, but independent of, DNS-Based Service Discovery (DNS-SD)
13
11
as defined in [RFC 6763](http://tools.ietf.org/html/rfc6763).
14
12
15
13
**Table of Contents**
@@ -23,6 +21,7 @@ as defined in [RFC 6763](http://tools.ietf.org/html/rfc6763).
23
21
*[Blocking](#blocking)
24
22
*[Install](#install)
25
23
*[License](#license)
24
+
*[More](#more)
26
25
27
26
> Note: This project is in beta stage! Feel free to report any issues you encounter.
28
27
@@ -145,3 +144,11 @@ The recommended way to install this library is [through composer](http://getcomp
145
144
## License
146
145
147
146
MIT
147
+
148
+
## More
149
+
150
+
* Multicast DNS is defined in [RFC 6762](http://tools.ietf.org/html/rfc6762), in particular
151
+
this specification also highlights the
152
+
[differences to normal DNS operation](http://tools.ietf.org/html/rfc6762#section-19).
153
+
* Please refer to the [react/dns component](https://github.com/reactphp/dns#readme) for more details
0 commit comments