diff options
| author | Donnie Savage <diivious@hotmail.com> | 2020-12-11 16:09:47 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-01-12 07:45:48 -0500 | 
| commit | dc4accdd53be819b961710b71049fd37e94c915d (patch) | |
| tree | 7f054b8ef1ae3ea205c48ea4fdfdcdf7981544c5 /eigrpd/eigrp_fsm.c | |
| parent | fb532db3f024dac96a588ca6f8a210b4c4e23f7a (diff) | |
eigrpd: Rename nexthop_entry and prefix_entry to better names
Rename struct eigrp_nexthop_entry to struct eigrp_route_descriptor
Rename struct eigrp_prefix_entry to struct eigrp_prefix_descriptor
Fix all the associated function names as well.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Signed-off-by: Donnie SAvage <diivious@hotmail.com>
Diffstat (limited to 'eigrpd/eigrp_fsm.c')
| -rw-r--r-- | eigrpd/eigrp_fsm.c | 52 | 
1 files changed, 26 insertions, 26 deletions
diff --git a/eigrpd/eigrp_fsm.c b/eigrpd/eigrp_fsm.c index a69a3eec0a..fb7336879e 100644 --- a/eigrpd/eigrp_fsm.c +++ b/eigrpd/eigrp_fsm.c @@ -262,13 +262,13 @@ eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)  {  	// Loading base information from message  	// struct eigrp *eigrp = msg->eigrp; -	struct eigrp_prefix_entry *prefix = msg->prefix; -	struct eigrp_nexthop_entry *entry = msg->entry; +	struct eigrp_prefix_descriptor *prefix = msg->prefix; +	struct eigrp_route_descriptor *entry = msg->entry;  	uint8_t actual_state = prefix->state;  	enum metric_change change;  	if (entry == NULL) { -		entry = eigrp_nexthop_entry_new(); +		entry = eigrp_route_descriptor_new();  		entry->adv_router = msg->adv_router;  		entry->ei = msg->adv_router->ei;  		entry->prefix = prefix; @@ -286,7 +286,7 @@ eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)  	switch (actual_state) {  	case EIGRP_FSM_STATE_PASSIVE: { -		struct eigrp_nexthop_entry *head = +		struct eigrp_route_descriptor *head =  			listnode_head(prefix->entries);  		if (head->reported_distance < prefix->fdistance) { @@ -307,7 +307,7 @@ eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)  	}  	case EIGRP_FSM_STATE_ACTIVE_0: {  		if (msg->packet_type == EIGRP_OPC_REPLY) { -			struct eigrp_nexthop_entry *head = +			struct eigrp_route_descriptor *head =  				listnode_head(prefix->entries);  			listnode_delete(prefix->rij, entry->adv_router); @@ -322,7 +322,7 @@ eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)  			return EIGRP_FSM_EVENT_LR_FCN;  		} else if (msg->packet_type == EIGRP_OPC_QUERY  			   && (entry->flags -			       & EIGRP_NEXTHOP_ENTRY_SUCCESSOR_FLAG)) { +			       & EIGRP_ROUTE_DESCRIPTOR_SUCCESSOR_FLAG)) {  			return EIGRP_FSM_EVENT_QACT;  		} @@ -332,14 +332,14 @@ eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)  	}  	case EIGRP_FSM_STATE_ACTIVE_1: {  		if (msg->packet_type == EIGRP_OPC_QUERY -		    && (entry->flags & EIGRP_NEXTHOP_ENTRY_SUCCESSOR_FLAG)) { +		    && (entry->flags & EIGRP_ROUTE_DESCRIPTOR_SUCCESSOR_FLAG)) {  			return EIGRP_FSM_EVENT_QACT;  		} else if (msg->packet_type == EIGRP_OPC_REPLY) {  			listnode_delete(prefix->rij, entry->adv_router);  			if (change == METRIC_INCREASE  			    && (entry->flags -				& EIGRP_NEXTHOP_ENTRY_SUCCESSOR_FLAG)) { +				& EIGRP_ROUTE_DESCRIPTOR_SUCCESSOR_FLAG)) {  				return EIGRP_FSM_EVENT_DINC;  			} else if (prefix->rij->count) {  				return EIGRP_FSM_KEEP_STATE; @@ -350,7 +350,7 @@ eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)  		} else if (msg->packet_type == EIGRP_OPC_UPDATE  			   && change == METRIC_INCREASE  			   && (entry->flags -			       & EIGRP_NEXTHOP_ENTRY_SUCCESSOR_FLAG)) { +			       & EIGRP_ROUTE_DESCRIPTOR_SUCCESSOR_FLAG)) {  			return EIGRP_FSM_EVENT_DINC;  		}  		return EIGRP_FSM_KEEP_STATE; @@ -359,7 +359,7 @@ eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)  	}  	case EIGRP_FSM_STATE_ACTIVE_2: {  		if (msg->packet_type == EIGRP_OPC_REPLY) { -			struct eigrp_nexthop_entry *head = +			struct eigrp_route_descriptor *head =  				listnode_head(prefix->entries);  			listnode_delete(prefix->rij, entry->adv_router); @@ -385,7 +385,7 @@ eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)  			if (change == METRIC_INCREASE  			    && (entry->flags -				& EIGRP_NEXTHOP_ENTRY_SUCCESSOR_FLAG)) { +				& EIGRP_ROUTE_DESCRIPTOR_SUCCESSOR_FLAG)) {  				return EIGRP_FSM_EVENT_DINC;  			} else if (prefix->rij->count) {  				return EIGRP_FSM_KEEP_STATE; @@ -396,7 +396,7 @@ eigrp_get_fsm_event(struct eigrp_fsm_action_message *msg)  		} else if (msg->packet_type == EIGRP_OPC_UPDATE  			   && change == METRIC_INCREASE  			   && (entry->flags -			       & EIGRP_NEXTHOP_ENTRY_SUCCESSOR_FLAG)) { +			       & EIGRP_ROUTE_DESCRIPTOR_SUCCESSOR_FLAG)) {  			return EIGRP_FSM_EVENT_DINC;  		}  		return EIGRP_FSM_KEEP_STATE; @@ -434,9 +434,9 @@ int eigrp_fsm_event(struct eigrp_fsm_action_message *msg)  int eigrp_fsm_event_nq_fcn(struct eigrp_fsm_action_message *msg)  {  	struct eigrp *eigrp = msg->eigrp; -	struct eigrp_prefix_entry *prefix = msg->prefix; +	struct eigrp_prefix_descriptor *prefix = msg->prefix;  	struct list *successors = eigrp_topology_get_successor(prefix); -	struct eigrp_nexthop_entry *ne; +	struct eigrp_route_descriptor *ne;  	assert(successors); // If this is NULL we have shit the bed, fun huh? @@ -461,9 +461,9 @@ int eigrp_fsm_event_nq_fcn(struct eigrp_fsm_action_message *msg)  int eigrp_fsm_event_q_fcn(struct eigrp_fsm_action_message *msg)  {  	struct eigrp *eigrp = msg->eigrp; -	struct eigrp_prefix_entry *prefix = msg->prefix; +	struct eigrp_prefix_descriptor *prefix = msg->prefix;  	struct list *successors = eigrp_topology_get_successor(prefix); -	struct eigrp_nexthop_entry *ne; +	struct eigrp_route_descriptor *ne;  	assert(successors); // If this is NULL somebody poked us in the eye. @@ -487,8 +487,8 @@ int eigrp_fsm_event_q_fcn(struct eigrp_fsm_action_message *msg)  int eigrp_fsm_event_keep_state(struct eigrp_fsm_action_message *msg)  {  	struct eigrp *eigrp = msg->eigrp; -	struct eigrp_prefix_entry *prefix = msg->prefix; -	struct eigrp_nexthop_entry *ne = listnode_head(prefix->entries); +	struct eigrp_prefix_descriptor *prefix = msg->prefix; +	struct eigrp_route_descriptor *ne = listnode_head(prefix->entries);  	if (prefix->state == EIGRP_FSM_STATE_PASSIVE) {  		if (!eigrp_metrics_is_same(prefix->reported_metric, @@ -515,8 +515,8 @@ int eigrp_fsm_event_keep_state(struct eigrp_fsm_action_message *msg)  int eigrp_fsm_event_lr(struct eigrp_fsm_action_message *msg)  {  	struct eigrp *eigrp = msg->eigrp; -	struct eigrp_prefix_entry *prefix = msg->prefix; -	struct eigrp_nexthop_entry *ne = listnode_head(prefix->entries); +	struct eigrp_prefix_descriptor *prefix = msg->prefix; +	struct eigrp_route_descriptor *ne = listnode_head(prefix->entries);  	prefix->fdistance = prefix->distance = prefix->rdistance = ne->distance;  	prefix->reported_metric = ne->total_metric; @@ -545,7 +545,7 @@ int eigrp_fsm_event_lr(struct eigrp_fsm_action_message *msg)  int eigrp_fsm_event_dinc(struct eigrp_fsm_action_message *msg)  {  	struct list *successors = eigrp_topology_get_successor(msg->prefix); -	struct eigrp_nexthop_entry *ne; +	struct eigrp_route_descriptor *ne;  	assert(successors); // Trump and his big hands @@ -566,8 +566,8 @@ int eigrp_fsm_event_dinc(struct eigrp_fsm_action_message *msg)  int eigrp_fsm_event_lr_fcs(struct eigrp_fsm_action_message *msg)  {  	struct eigrp *eigrp = msg->eigrp; -	struct eigrp_prefix_entry *prefix = msg->prefix; -	struct eigrp_nexthop_entry *ne = listnode_head(prefix->entries); +	struct eigrp_prefix_descriptor *prefix = msg->prefix; +	struct eigrp_route_descriptor *ne = listnode_head(prefix->entries);  	prefix->state = EIGRP_FSM_STATE_PASSIVE;  	prefix->distance = prefix->rdistance = ne->distance; @@ -598,8 +598,8 @@ int eigrp_fsm_event_lr_fcs(struct eigrp_fsm_action_message *msg)  int eigrp_fsm_event_lr_fcn(struct eigrp_fsm_action_message *msg)  {  	struct eigrp *eigrp = msg->eigrp; -	struct eigrp_prefix_entry *prefix = msg->prefix; -	struct eigrp_nexthop_entry *best_successor; +	struct eigrp_prefix_descriptor *prefix = msg->prefix; +	struct eigrp_route_descriptor *best_successor;  	struct list *successors = eigrp_topology_get_successor(prefix);  	assert(successors); // Routing without a stack @@ -628,7 +628,7 @@ int eigrp_fsm_event_lr_fcn(struct eigrp_fsm_action_message *msg)  int eigrp_fsm_event_qact(struct eigrp_fsm_action_message *msg)  {  	struct list *successors = eigrp_topology_get_successor(msg->prefix); -	struct eigrp_nexthop_entry *ne; +	struct eigrp_route_descriptor *ne;  	assert(successors); // Cats and no Dogs  | 
