mirror of
https://github.com/maride/pancap.git
synced 2024-11-22 16:54:25 +00:00
16 lines
267 B
Go
16 lines
267 B
Go
package protocol
|
|
|
|
import (
|
|
"git.darknebu.la/maride/pancap/protocol/arp"
|
|
"git.darknebu.la/maride/pancap/protocol/dhcpv4"
|
|
"git.darknebu.la/maride/pancap/protocol/dns"
|
|
)
|
|
|
|
var (
|
|
Protocols = []Protocol{
|
|
&arp.Protocol{},
|
|
&dhcpv4.Protocol{},
|
|
&dns.Protocol{},
|
|
}
|
|
)
|