Merge pull request #48 from stapelberg/master

Expose rr.Txt as []string instead of joining it with “|”.
This commit is contained in:
Ryan Uber 2015-12-05 20:24:12 -08:00
commit 9d85cf22f9

View File

@ -21,6 +21,7 @@ type ServiceEntry struct {
AddrV6 net.IP AddrV6 net.IP
Port int Port int
Info string Info string
InfoFields []string
Addr net.IP // @Deprecated Addr net.IP // @Deprecated
@ -258,6 +259,7 @@ func (c *client) query(params *QueryParam) error {
// Pull out the txt // Pull out the txt
inp = ensureName(inprogress, rr.Hdr.Name) inp = ensureName(inprogress, rr.Hdr.Name)
inp.Info = strings.Join(rr.Txt, "|") inp.Info = strings.Join(rr.Txt, "|")
inp.InfoFields = rr.Txt
inp.hasTXT = true inp.hasTXT = true
case *dns.A: case *dns.A: