diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2022-02-01 12:19:11 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-01 12:19:11 +0300 |
| commit | 461a8d7aba640de1a93ca0d583e08db41ad0d70d (patch) | |
| tree | 8bde1a140913f768c4282e107991fdc1474482f8 /zebra/rib.h | |
| parent | eaedb8892df335c67bdd6f9752465258b971c6d5 (diff) | |
| parent | b86c1f4fccb6bbc760e1eb276b41dd6a7f86f632 (diff) | |
Merge pull request #10443 from mjstapp/zebra_re_opaque
zebra: name the route_entry opaque struct more specifically
Diffstat (limited to 'zebra/rib.h')
| -rw-r--r-- | zebra/rib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/rib.h b/zebra/rib.h index a0ec1f0e4f..d873eb22d1 100644 --- a/zebra/rib.h +++ b/zebra/rib.h @@ -87,7 +87,7 @@ struct rnh { PREDECL_LIST(re_list); -struct opaque { +struct re_opaque { uint16_t length; uint8_t data[]; }; @@ -169,7 +169,7 @@ struct route_entry { /* Distance. */ uint8_t distance; - struct opaque *opaque; + struct re_opaque *opaque; }; #define RIB_SYSTEM_ROUTE(R) RSYSTEM_ROUTE((R)->type) |
