ing
This commit is contained in:
parent
9f798ea115
commit
1ae4509bc6
|
@ -28,7 +28,7 @@ func TestCassandra(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ func TestDns(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, 0, p); err != nil {
|
||||
if err := m.Match(matchCtx, 0, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ func TestES(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ func TestFTP(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
|
@ -74,7 +74,7 @@ func TestFTPS(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ func TestHTTP(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
@ -69,7 +69,7 @@ func TestHTTPS(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ func TestLdap(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ func TestLDP(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -53,7 +53,7 @@ func MongoRun(matchCtx *osm.MatchCtx, conn net.Conn, t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ func TestMySql(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, 0, p); err != nil {
|
||||
if err := m.Match(matchCtx, 0, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
t.Log(m.Name(matchCtx))
|
||||
|
|
|
@ -27,7 +27,7 @@ func TestNBSS(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, 0, p); err != nil {
|
||||
if err := m.Match(matchCtx, 0, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ func TestPG(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ func TestRedisMatcher(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ func TestRMIMatcher_Match(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@ func TestSMBMatcher(t *testing.T) {
|
|||
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, 0, p); err != nil {
|
||||
if err := m.Match(matchCtx, 0, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ func TestSNMPv2(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, 0, p); err != nil {
|
||||
if err := m.Match(matchCtx, 0, p); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
t.Log(matchCtx)
|
||||
|
|
|
@ -28,7 +28,7 @@ func TestSSH(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@ func TestTelnetMatcher_Match(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ func TestWMI(t *testing.T) {
|
|||
n, _ := conn.Read(bytes)
|
||||
p := osm.NewPacket(bytes, n)
|
||||
|
||||
if err := m.Match(nil, i, p); err != nil {
|
||||
if err := m.Match(matchCtx, i, p); err != nil {
|
||||
t.Error(err)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user