diff options
| author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2021-10-23 00:06:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-23 00:06:16 -0500 |
| commit | 63da89db77a9a485c8336dbcc5520fbd47404a1a (patch) | |
| tree | c0c1f5b063aa510ce083a93011497d2adbe073fb /zebra/zapi_msg.c | |
| parent | ffab914521927b6225eab6b02f96d5499c8ea85b (diff) | |
| parent | d70a31a3ef2b60d978b336d5cc9ee5e1ec079dfc (diff) | |
Merge pull request #9742 from elimbaum/add-vlan-actions
pbrd: add vlan actions to vty
Diffstat (limited to 'zebra/zapi_msg.c')
| -rw-r--r-- | zebra/zapi_msg.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/zebra/zapi_msg.c b/zebra/zapi_msg.c index 2e9b0b6ea2..6cb4cf5ca1 100644 --- a/zebra/zapi_msg.c +++ b/zebra/zapi_msg.c @@ -3190,6 +3190,12 @@ static inline void zread_rule(ZAPI_HANDLER_ARGS) STREAM_GETW(s, zpr.rule.filter.dst_port); STREAM_GETC(s, zpr.rule.filter.dsfield); STREAM_GETL(s, zpr.rule.filter.fwmark); + + STREAM_GETL(s, zpr.rule.action.queue_id); + STREAM_GETW(s, zpr.rule.action.vlan_id); + STREAM_GETW(s, zpr.rule.action.vlan_flags); + STREAM_GETW(s, zpr.rule.action.pcp); + STREAM_GETL(s, zpr.rule.action.table); STREAM_GET(ifname, s, INTERFACE_NAMSIZ); |
