From 8c1bebe83f7e277a36b8f570ed88363a5f3639b3 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Fri, 28 Oct 2016 06:31:54 -0700 Subject: IPv6 Classify Forwarding Graph errors Fix a few places where the protocol of the DPO object was incorrectly set and hence the graph traversed by the packet jumped between ip4 and ip6 nodes. Change-Id: I75c4ecfdf79df39f5dbb7c68f1fc82ff04aaed28 Signed-off-by: Neale Ranns --- vpp/vpp-api/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vpp') diff --git a/vpp/vpp-api/api.c b/vpp/vpp-api/api.c index 9af8dbc6..832ea66e 100644 --- a/vpp/vpp-api/api.c +++ b/vpp/vpp-api/api.c @@ -1126,7 +1126,7 @@ add_del_route_t_handler (u8 is_multipath, } dpo_set (&dpo, DPO_CLASSIFY, dproto, - classify_dpo_create (prefix->fp_proto, + classify_dpo_create (dproto, ntohl (classify_table_index))); } else -- cgit 1.2.3-korg