Public Release

This commit is contained in:
Slack Security Team
2019-11-19 17:00:20 +00:00
commit f22b4b584d
103 changed files with 14825 additions and 0 deletions

19
dns_server_test.go Normal file
View File

@@ -0,0 +1,19 @@
package nebula
import (
"testing"
"github.com/miekg/dns"
)
func TestParsequery(t *testing.T) {
//TODO: This test is basically pointless
hostMap := &HostMap{}
ds := newDnsRecords(hostMap)
ds.Add("test.com.com", "1.2.3.4")
m := new(dns.Msg)
m.SetQuestion("test.com.com", dns.TypeA)
//parseQuery(m)
}