Actually add the MINFO parsing

This commit is contained in:
Miek Gieben 2013-06-05 22:16:55 +01:00
parent f6c697f52b
commit b33fb29f34
1 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,9 @@ func setRR(h RR_Header, c chan lex, o, f string) (RR, *ParseError, string) {
case TypeHINFO:
r, e = setHINFO(h, c, f)
goto Slurp
case TypeMINFO:
r, e = setMINFO(h, c, o, f)
goto Slurp
case TypeNS:
r, e = setNS(h, c, o, f)
goto Slurp