summaryrefslogtreecommitdiffstats
path: root/eigrpd/eigrp_packet.h
diff options
context:
space:
mode:
Diffstat (limited to 'eigrpd/eigrp_packet.h')
-rw-r--r--eigrpd/eigrp_packet.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/eigrpd/eigrp_packet.h b/eigrpd/eigrp_packet.h
index cb69bc26b..f65917666 100644
--- a/eigrpd/eigrp_packet.h
+++ b/eigrpd/eigrp_packet.h
@@ -33,8 +33,8 @@
#define _ZEBRA_EIGRP_PACKET_H
/*Prototypes*/
-extern int eigrp_read(struct thread *);
-extern int eigrp_write(struct thread *);
+extern void eigrp_read(struct thread *thread);
+extern void eigrp_write(struct thread *thread);
extern struct eigrp_packet *eigrp_packet_new(size_t size,
struct eigrp_neighbor *nbr);
@@ -66,8 +66,8 @@ extern uint16_t eigrp_add_authTLV_MD5_to_stream(struct stream *s,
extern uint16_t eigrp_add_authTLV_SHA256_to_stream(struct stream *s,
struct eigrp_interface *ei);
-extern int eigrp_unack_packet_retrans(struct thread *thread);
-extern int eigrp_unack_multicast_packet_retrans(struct thread *thread);
+extern void eigrp_unack_packet_retrans(struct thread *thread);
+extern void eigrp_unack_multicast_packet_retrans(struct thread *thread);
/*
* untill there is reason to have their own header, these externs are found in
@@ -80,7 +80,7 @@ extern void eigrp_hello_send_ack(struct eigrp_neighbor *nbr);
extern void eigrp_hello_receive(struct eigrp *eigrp, struct ip *iph,
struct eigrp_header *eigrph, struct stream *s,
struct eigrp_interface *ei, int size);
-extern int eigrp_hello_timer(struct thread *thread);
+extern void eigrp_hello_timer(struct thread *thread);
/*
* These externs are found in eigrp_update.c
@@ -96,7 +96,7 @@ extern void eigrp_update_send_all(struct eigrp *eigrp,
struct eigrp_interface *exception);
extern void eigrp_update_send_init(struct eigrp_neighbor *nbr);
extern void eigrp_update_send_EOT(struct eigrp_neighbor *nbr);
-extern int eigrp_update_send_GR_thread(struct thread *thread);
+extern void eigrp_update_send_GR_thread(struct thread *thread);
extern void eigrp_update_send_GR(struct eigrp_neighbor *nbr,
enum GR_type gr_type, struct vty *vty);
extern void eigrp_update_send_interface_GR(struct eigrp_interface *ei,