diff options
author | Olivier Dugeon <olivier.dugeon@orange.com> | 2020-05-03 20:01:20 +0200 |
---|---|---|
committer | Olivier Dugeon <olivier.dugeon@orange.com> | 2020-05-14 16:23:50 +0200 |
commit | b1d80d434cc56dcf19cf24cdc35b635de3dd0e7c (patch) | |
tree | 49309692ec51436f4f52cefc3d921b2e5193a5c0 /isisd/isis_sr.h | |
parent | isisd: IS-IS-SR preparation for master 1/5 (diff) | |
download | frr-b1d80d434cc56dcf19cf24cdc35b635de3dd0e7c.tar.xz frr-b1d80d434cc56dcf19cf24cdc35b635de3dd0e7c.zip |
isisd: IS-IS-SR preparation for master 2/5
* Rename functions following rules: isis_sr_XXX is kept for external functions
and isis_sr prefix remove for static ones
* Rename local_label & remote_label variables by input_label & output_label
* Change parameter order (to follow other functions) in sr_node_srgb_update()
Signed-off-by: Olivier Dugeon <olivier.dugeon@orange.com>
Diffstat (limited to 'isisd/isis_sr.h')
-rw-r--r-- | isisd/isis_sr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isisd/isis_sr.h b/isisd/isis_sr.h index a7d52aafe..2759e860f 100644 --- a/isisd/isis_sr.h +++ b/isisd/isis_sr.h @@ -120,8 +120,8 @@ struct sr_prefix { /* SID value, algorithm and flags. */ struct isis_prefix_sid sid; - /* Local label value. */ - mpls_label_t local_label; + /* Input label value. */ + mpls_label_t input_label; /* Prefix-SID type. */ enum sr_prefix_type type; |