File tree 1 file changed +19
-0
lines changed
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -219,6 +219,10 @@ sai_status_t sai_set_route_entry_attribute(
219
219
SAI_LOG_ENTER ();
220
220
221
221
sai_status_t status = SAI_STATUS_SUCCESS ;
222
+ switch_ip_addr_t ip_addr ;
223
+ switch_handle_t vrf_handle = 0 ;
224
+ switch_handle_t nhop_handle = 0 ;
225
+ switch_status_t switch_status = SWITCH_STATUS_SUCCESS ;
222
226
223
227
if (!unicast_route_entry ) {
224
228
status = SAI_STATUS_INVALID_PARAMETER ;
@@ -232,6 +236,21 @@ sai_status_t sai_set_route_entry_attribute(
232
236
return status ;
233
237
}
234
238
239
+ sai_route_entry_parse (unicast_route_entry , & vrf_handle , & ip_addr );
240
+
241
+ switch (attr -> id ) {
242
+ case SAI_ROUTE_ATTR_NEXT_HOP_ID :
243
+ nhop_handle = (switch_handle_t )attr -> value .oid ;
244
+ if (nhop_handle ) {
245
+ switch_status =
246
+ switch_api_l3_route_add (device , vrf_handle , & ip_addr , nhop_handle );
247
+ status = sai_switch_status_to_sai_status (switch_status );
248
+ }
249
+ break ;
250
+ default :
251
+ break ;
252
+ }
253
+
235
254
SAI_LOG_EXIT ();
236
255
237
256
return (sai_status_t )status ;
You can’t perform that action at this time.
0 commit comments