1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-09 00:00:05 +01:00

bugfix: readded ttl to bgp protocol

This commit is contained in:
hellerve 2017-02-16 17:25:35 +01:00
parent 5caff4e33d
commit b6a2fb70c8
3 changed files with 4 additions and 3 deletions

View file

@ -1 +1 @@
1.7.7
1.7.8

View file

@ -159,7 +159,8 @@ func ProtocolsBgp() (Parsed, bool) {
}
}
return Parsed{"protocols": bgpProto}, from_cache
return Parsed{"protocols": bgpProto, "ttl": p["ttl"]}, from_cache
}
func Symbols() (Parsed, bool) {

View file

@ -13,7 +13,7 @@ import (
)
//go:generate versionize
var VERSION = "1.7.7"
var VERSION = "1.7.8"
func isModuleEnabled(module string, modulesEnabled []string) bool {
for _, enabled := range modulesEnabled {