diff options
Diffstat (limited to 'api')
-rw-r--r-- | api/gobgp.pb.go | 5 | ||||
-rw-r--r-- | api/gobgp.proto | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/api/gobgp.pb.go b/api/gobgp.pb.go index 30b925aa..17da4c6b 100644 --- a/api/gobgp.pb.go +++ b/api/gobgp.pb.go @@ -1178,8 +1178,9 @@ func (m *Vrf) String() string { return proto.CompactTextString(m) } func (*Vrf) ProtoMessage() {} type Global struct { - As uint32 `protobuf:"varint,1,opt,name=as" json:"as,omitempty"` - RouterId string `protobuf:"bytes,2,opt,name=router_id" json:"router_id,omitempty"` + As uint32 `protobuf:"varint,1,opt,name=as" json:"as,omitempty"` + RouterId string `protobuf:"bytes,2,opt,name=router_id" json:"router_id,omitempty"` + ListenPort int32 `protobuf:"varint,3,opt,name=listen_port" json:"listen_port,omitempty"` } func (m *Global) Reset() { *m = Global{} } diff --git a/api/gobgp.proto b/api/gobgp.proto index df52a93e..ca3b3020 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -467,4 +467,5 @@ message Vrf { message Global { uint32 as = 1; string router_id = 2; + int32 listen_port = 3; } |