diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-11-01 13:00:58 -0400 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2020-05-06 15:13:09 +0000 |
commit | b5a575b0924036378b6deb50ac8fe7de3380e18d (patch) | |
tree | fae50e4af5256fe24838f7e85d1d6c17bcdc80d4 /src/plugins/l3xc | |
parent | aad5e0c16fb4d91f6d896f8035d6acb9bcd0fec6 (diff) |
docs: clean up make docs job
Type: docs
Change-Id: I9b5e5137eb4c1e89f6e8d7a278cd11a0fd496471
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'src/plugins/l3xc')
-rw-r--r-- | src/plugins/l3xc/l3xc.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/l3xc/l3xc.h b/src/plugins/l3xc/l3xc.h index d5e1d372a86..9daecd0edfd 100644 --- a/src/plugins/l3xc/l3xc.h +++ b/src/plugins/l3xc/l3xc.h @@ -64,7 +64,8 @@ typedef struct l3xc_t_ /** * Create or update an L3XC Policy * - * @param sw_if_index_index the input interface + * @param sw_if_index the input interface + * @param is_ipv6 - 0 if ip4, 1 if ip6 * @param rpaths The set of paths to add to the forwarding set * @return error code */ @@ -74,7 +75,8 @@ extern int l3xc_update (u32 sw_if_index, /** * Delete an L3XC. * - * @param sw_if_index_index the input interface + * @param sw_if_index the input interface + * @param is_ipv6 - 0 if ip4, 1 if ip6 */ extern int l3xc_delete (u32 sw_if_index, u8 is_ip6); @@ -89,7 +91,7 @@ typedef int (*l3xc_walk_cb_t) (index_t l3xci, void *ctx); extern void l3xc_walk (l3xc_walk_cb_t cb, void *ctx); /** - * Find a L3 XC object from an interfce and FIB protocol + * Find a L3 XC object from an interface and FIB protocol */ extern index_t l3xc_find (u32 sw_if_index, fib_protocol_t fproto); |