Merge pull request #3 from prauscher/issue-2

Fix issue #2
This commit is contained in:
Daniel Czerwonk 2017-05-16 14:19:00 +02:00 committed by GitHub
commit 8cf47f1aa4

View File

@ -56,7 +56,7 @@ func parseLineForProtocol(line string, ipVersion int) (*protocol, bool) {
}
proto := parseProto(match[2])
up := parseState(match[6], proto)
up := parseState(match[4], proto)
ut := parseUptime(match[5])
p := &protocol{proto: proto, name: match[1], ipVersion: ipVersion, up: up, uptime: ut, attributes: make(map[string]interface{})}
@ -84,7 +84,7 @@ func parseLineForRoutes(line string, p *protocol) {
}
func parseState(state string, proto int) int {
if proto == OSPF || state == "Established" {
if state == "up" {
return 1
} else {
return 0