diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-08-12 13:16:58 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-08-12 13:44:33 +0900 |
commit | 6180ffb7106e3673e4da5a2d2ce1f87612462721 (patch) | |
tree | 74646c52142ccda5b34231207cc741f8288f38ec /api | |
parent | c2f5b1a176a1b7f72658821d057e23414e839718 (diff) |
support rpki validation
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'api')
-rw-r--r-- | api/gobgp.pb.go | 1 | ||||
-rw-r--r-- | api/gobgp.proto | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/api/gobgp.pb.go b/api/gobgp.pb.go index 4d91e526..9eebd786 100644 --- a/api/gobgp.pb.go +++ b/api/gobgp.pb.go @@ -322,6 +322,7 @@ type Path struct { Age int64 `protobuf:"varint,3,opt,name=age" json:"age,omitempty"` Best bool `protobuf:"varint,4,opt,name=best" json:"best,omitempty"` IsWithdraw bool `protobuf:"varint,5,opt,name=is_withdraw" json:"is_withdraw,omitempty"` + Validation int32 `protobuf:"varint,6,opt,name=validation" json:"validation,omitempty"` } func (m *Path) Reset() { *m = Path{} } diff --git a/api/gobgp.proto b/api/gobgp.proto index 650e452b..5c5afbfe 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -144,6 +144,7 @@ message Path { int64 age = 3; bool best = 4; bool is_withdraw = 5; + int32 validation = 6; } message Destination { |