diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-22 19:48:23 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-08-24 08:04:20 -0400 | 
| commit | 5ca6df7822a8cddd1a10b27760f6b6e274aced5d (patch) | |
| tree | 1c34cec265e2e23e1b42d60e11cc0ae3ea317a0b /eigrpd/eigrp_packet.c | |
| parent | db6ec9ff6e8e1641c586ce32b4422b6e0c896500 (diff) | |
eigrpd: No need to create TLV type
There is no need to create a TLV type to pass in for the
FSM message.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_packet.c')
| -rw-r--r-- | eigrpd/eigrp_packet.c | 20 | 
1 files changed, 10 insertions, 10 deletions
diff --git a/eigrpd/eigrp_packet.c b/eigrpd/eigrp_packet.c index 72aaef1b37..d4e8264f20 100644 --- a/eigrpd/eigrp_packet.c +++ b/eigrpd/eigrp_packet.c @@ -1101,6 +1101,16 @@ struct eigrp_packet *eigrp_packet_duplicate(struct eigrp_packet *old,  	return new;  } +static struct TLV_IPv4_Internal_type *eigrp_IPv4_InternalTLV_new() +{ +	struct TLV_IPv4_Internal_type *new; + +	new = XCALLOC(MTYPE_EIGRP_IPV4_INT_TLV, +		      sizeof(struct TLV_IPv4_Internal_type)); + +	return new; +} +  struct TLV_IPv4_Internal_type *eigrp_read_ipv4_tlv(struct stream *s)  {  	struct TLV_IPv4_Internal_type *tlv; @@ -1332,16 +1342,6 @@ void eigrp_authTLV_SHA256_free(struct TLV_SHA256_Authentication_Type *authTLV)  	XFREE(MTYPE_EIGRP_AUTH_SHA256_TLV, authTLV);  } -struct TLV_IPv4_Internal_type *eigrp_IPv4_InternalTLV_new() -{ -	struct TLV_IPv4_Internal_type *new; - -	new = XCALLOC(MTYPE_EIGRP_IPV4_INT_TLV, -		      sizeof(struct TLV_IPv4_Internal_type)); - -	return new; -} -  void eigrp_IPv4_InternalTLV_free(  	struct TLV_IPv4_Internal_type *IPv4_InternalTLV)  {  | 
