diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-23 14:19:45 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-24 08:04:20 -0400 | 
| commit | 02b459988199f05c81d4353d6fd6812c196c7a5d (patch) | |
| tree | 7f8b8c45ee83df4fc2b3875e78910da3b6d5140b /eigrpd/eigrp_structs.h | |
| parent | 348addb4e7e44f614f84d75d41a0af1a8ad2e6c1 (diff) | |
eigrpd: Convert pe->destination_ipv4 to pe->destination
Convert the destination_ipv4 to a struct prefix and just
call it destination.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_structs.h')
| -rw-r--r-- | eigrpd/eigrp_structs.h | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/eigrpd/eigrp_structs.h b/eigrpd/eigrp_structs.h index 6bb0c5cc2b..b769774a03 100644 --- a/eigrpd/eigrp_structs.h +++ b/eigrpd/eigrp_structs.h @@ -469,10 +469,7 @@ struct eigrp_prefix_entry {  	u_char af;	 // address family  	u_char req_action; // required action -	struct prefix_ipv4 -		*destination_ipv4; // pointer to struct with ipv4 address -	struct prefix_ipv6 -		*destination_ipv6; // pointer to struct with ipv6 address +	struct prefix *destination;  	// If network type is REMOTE_EXTERNAL, pointer will have reference to  	// its external TLV  | 
