added missing file

This commit is contained in:
Daniel Czerwonk 2017-02-04 21:37:54 +01:00
parent 37c832164d
commit c8ebdc86e3

18
protocol.go Normal file
View File

@ -0,0 +1,18 @@
package main
const (
PROTO_UNKNOWN = 0
BGP = 1
OSPF = 2
)
type protocol struct {
name string
ipVersion int
proto int
up int
imported int64
exported int64
uptime int
attributes map[string]interface{}
}