pancap/protocol/index.go

18 lines
334 B
Go
Raw Normal View History

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