diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2018-09-01 21:51:21 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2021-01-23 09:03:18 +0900 |
commit | 4c8ab0d4b5090b5b9ca115bdeb3dd8e1a627f5e2 (patch) | |
tree | f688d7e0bd48816b92e70c92830d4c5a16c05310 /api | |
parent | 89e404be46cfa30fdb994464a1c8e4fd93d3407f (diff) |
support UDP destination port sub-TLV
As specified in draft-ietf-idr-tunnel-encaps.
Signed-off-by: Mikael Magnusson <mikma@users.sourceforge.net>
Diffstat (limited to 'api')
-rw-r--r-- | api/attribute.proto | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/api/attribute.proto b/api/attribute.proto index 9ed2e6e8..409a12d1 100644 --- a/api/attribute.proto +++ b/api/attribute.proto @@ -613,6 +613,10 @@ message TunnelEncapSubTLVSRSegmentList { repeated google.protobuf.Any segments = 2; } +message TunnelEncapSubTLVUDPDestPort { + uint32 port = 1; +} + message TunnelEncapSubTLVUnknown { uint32 type = 1; bytes value = 2; |