| 252 | |
| 253 | /// Rib extended with evpn specific fields |
| 254 | struct obj_evpn: obj_rib, obj_route_distinguisher { |
| 255 | uint8_t originating_router_ip_len; |
| 256 | char originating_router_ip[46]; |
| 257 | char ethernet_segment_identifier[255]; |
| 258 | char ethernet_tag_id_hex[16]; |
| 259 | uint8_t mac_len; |
| 260 | char mac[255]; |
| 261 | uint8_t ip_len; |
| 262 | char ip[46]; |
| 263 | int mpls_label_1; |
| 264 | int mpls_label_2; |
| 265 | }; |
| 266 | |
| 267 | /// Unicast prefix action codes |
| 268 | enum unicast_prefix_action_code { |
nothing calls this directly
no outgoing calls
no test coverage detected