Check for empty message in typify
This commit is contained in:
parent
be3c0195b6
commit
03bc071774
2 changed files with 13 additions and 0 deletions
|
@ -58,6 +58,10 @@ func TypeFromString(s string) (Type, error) {
|
|||
|
||||
// Typify classifies a message, it returns the Type.
|
||||
func Typify(m *dns.Msg) (Type, *dns.OPT) {
|
||||
if m == nil {
|
||||
return OtherError, nil
|
||||
}
|
||||
|
||||
opt := m.IsEdns0()
|
||||
|
||||
if len(m.Answer) > 0 && m.Rcode == dns.RcodeSuccess {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue