tjfontaine / native-dns-packet

DNS parsing and writing in javascript
MIT License
58 stars 36 forks source link

be able to send questions with a mDNS unicast response bit set. #4

Open mash opened 10 years ago

mash commented 10 years ago

see http://tools.ietf.org/html/rfc6762#section-5.4

ex:

var question = {
    type  : dns.consts.NAME_TO_QTYPE['A'],
    class : dns.consts.NAME_TO_QCLASS.IN_UNICASTMDNS,
    name  : name + ".local"
};
taoeffect commented 10 years ago

@tjfontaine I have no idea about this one (out of scope for me). Should we just merge it?