moved regex initialization to init function

This commit is contained in:
Daniel Czerwonk 2016-12-16 23:18:16 +01:00
parent dc61d27150
commit fb2806649b
2 changed files with 1 additions and 2 deletions

View File

@ -32,7 +32,6 @@ var (
)
func main() {
initRegexes()
flag.Parse()
if *showVersion {

View File

@ -16,7 +16,7 @@ var (
uptimeRegex *regexp.Regexp
)
func initRegexes() {
func init() {
protoRegex, _ = regexp.Compile("^([^\\s]+)\\s+BGP\\s+([^\\s]+)\\s+([^\\s]+)\\s+([^\\s]+)\\s+(.*?)\\s*$")
routeRegex, _ = regexp.Compile("^\\s+Routes:\\s+(\\d+) imported, \\d+ filtered, (\\d+) exported")
uptimeRegex, _ = regexp.Compile("^(?:((\\d+):(\\d{2}):(\\d{2}))|\\d+)$")