mirror of
https://github.com/maride/pancap.git
synced 2024-11-22 08:54:24 +00:00
18 lines
314 B
Go
18 lines
314 B
Go
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{},
|
|
&http.Protocol{},
|
|
}
|
|
)
|