diff options
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 fe6949f4..97ededd1 100644 --- a/api/gobgp.pb.go +++ b/api/gobgp.pb.go @@ -249,6 +249,7 @@ type Path struct { Rf uint32 `protobuf:"varint,8,opt,name=rf" json:"rf,omitempty"` SourceAsn uint32 `protobuf:"varint,9,opt,name=source_asn" json:"source_asn,omitempty"` SourceId string `protobuf:"bytes,10,opt,name=source_id" json:"source_id,omitempty"` + Filtered bool `protobuf:"varint,11,opt,name=filtered" json:"filtered,omitempty"` } func (m *Path) Reset() { *m = Path{} } diff --git a/api/gobgp.proto b/api/gobgp.proto index 0ce3cf36..ec480470 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -118,6 +118,7 @@ message Path { uint32 rf = 8; uint32 source_asn = 9; string source_id = 10; + bool filtered = 11; } message Destination { |