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

This commit is contained in:
evilsocket 2018-04-30 16:21:57 +02:00
commit 480f0daa8d
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
4 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ package network
import "regexp"
var ArpTableParser = regexp.MustCompile("^[^\\d\\.]+([\\d\\.]+).+\\s+([a-f0-9\\-]{11,17})\\s+.+$")
var ArpTableParser = regexp.MustCompile(`^[^\d\.]+([\d\.]+).+\s+([a-f0-9\-]{11,17})\s+.+$`)
var ArpTableTokens = 3
var ArpTableTokenIndex = []int{1, 2, -1}
var ArpCmd = "arp"