diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2021-09-29 15:36:51 +0200 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2021-10-06 12:32:20 +0000 |
commit | 2c77ae484c30ca5a752c5f7ccd336d8e977db9a6 (patch) | |
tree | dbc5038f3e4cc60b62f151589728e7d74490b160 /src/vnet/srv6 | |
parent | ecd6b1a985acd8e0256a170f1fe1f7e38df8c420 (diff) |
docs: vnet comment nitfixes
Type: improvement
Change-Id: Iac01d7830b53819ace8f199554be10ab89ecdb97
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/vnet/srv6')
-rw-r--r-- | src/vnet/srv6/sr.h | 2 | ||||
-rw-r--r-- | src/vnet/srv6/sr_policy_rewrite.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/vnet/srv6/sr.h b/src/vnet/srv6/sr.h index c84534c8ae7..ea9ff709feb 100644 --- a/src/vnet/srv6/sr.h +++ b/src/vnet/srv6/sr.h @@ -101,7 +101,7 @@ typedef struct u8 type; /**< Type (default is 0) */ /* SR Policy specific DPO */ - /* IF Type = DEFAULT Then Load Balancer DPO among SID lists */ + /* IF Type = DEFAULT Then Load-Balancer DPO among SID lists */ /* IF Type = SPRAY then Spray DPO with all SID lists */ dpo_id_t bsid_dpo; /**< SR Policy specific DPO - BSID */ dpo_id_t ip4_dpo; /**< SR Policy specific DPO - IPv6 */ diff --git a/src/vnet/srv6/sr_policy_rewrite.c b/src/vnet/srv6/sr_policy_rewrite.c index 95de43166a1..500772e8065 100644 --- a/src/vnet/srv6/sr_policy_rewrite.c +++ b/src/vnet/srv6/sr_policy_rewrite.c @@ -33,7 +33,7 @@ * Traffic input usually is IPv6 packets. However it is possible to have * IPv4 packets or L2 frames. (that are encapsulated into IPv6 with SRH) * - * This file provides the appropiates VPP graph nodes to do any of these + * This file provides the appropriate VPP graph nodes to do any of these * methods. * */ @@ -434,7 +434,7 @@ create_sl (ip6_sr_policy_t * sr_policy, ip6_address_t * sl, u32 weight, } /** - * @brief Updates the Load Balancer after an SR Policy change + * @brief Updates the Load-Balancer after an SR Policy change * * @param sr_policy is the modified SR Policy */ |