added missing file
This commit is contained in:
parent
37c832164d
commit
c8ebdc86e3
18
protocol.go
Normal file
18
protocol.go
Normal 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{}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user