Skip to content

Commit 366e93b

Browse files
author
kram
committed
add set_route
1 parent eaefc4b commit 366e93b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

switchsai/src/sairoute.c

+19
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,10 @@ sai_status_t sai_set_route_entry_attribute(
219219
SAI_LOG_ENTER();
220220

221221
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;
222226

223227
if (!unicast_route_entry) {
224228
status = SAI_STATUS_INVALID_PARAMETER;
@@ -232,6 +236,21 @@ sai_status_t sai_set_route_entry_attribute(
232236
return status;
233237
}
234238

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+
235254
SAI_LOG_EXIT();
236255

237256
return (sai_status_t)status;

0 commit comments

Comments
 (0)