pancap/protocol/index.go

18 lines
314 B
Go
Raw Permalink Normal View History

package protocol
import (
"github.com/maride/pancap/protocol/arp"
"github.com/maride/pancap/protocol/dhcpv4"
"github.com/maride/pancap/protocol/dns"
"github.com/maride/pancap/protocol/http"
)
var (
Protocols = []Protocol{
&arp.Protocol{},
&dhcpv4.Protocol{},
&dns.Protocol{},
2020-01-08 10:48:53 +00:00
&http.Protocol{},
}
)