misc: small fix or general refactoring i did not bother commenting

This commit is contained in:
evilsocket 2018-02-16 13:21:52 +01:00
commit 3e100ce633
2 changed files with 8 additions and 8 deletions

View file

@ -10,7 +10,12 @@ import (
"github.com/evilsocket/bettercap-ng/core"
)
const MonitorModeAddress = "0.0.0.0"
const (
MonitorModeAddress = "0.0.0.0"
BroadcastMac = "ff:ff:ff:ff:ff:ff"
IPv4MulticastStart = "01:00:5e:00:00:00"
IPv4MulticastEnd = "01:00:5e:7f:ff:ff"
)
var (
IPv4Validator = regexp.MustCompile("^[0-9\\.]+/?\\d*$")