diff options
author | Christian Franke <chris@opensourcerouting.org> | 2018-10-10 15:43:01 +0200 |
---|---|---|
committer | Christian Franke <chris@opensourcerouting.org> | 2018-12-04 16:13:24 +0100 |
commit | a0a707ee6c2a546d4bb60ca7bf5655f856bc9e7d (patch) | |
tree | 057db18b7547ef7a37549c7c8e8e92cf6c2d777b /isisd/isis_pdu.h | |
parent | lib: add thread_timer_remain_msec function (diff) | |
download | frr-a0a707ee6c2a546d4bb60ca7bf5655f856bc9e7d.tar.xz frr-a0a707ee6c2a546d4bb60ca7bf5655f856bc9e7d.zip |
isisd: add send_hello_sched function
Add a function send_hello_sched so that the logic for scheduling a
hello is not replicated inconsistently into different locations.
Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Diffstat (limited to 'isisd/isis_pdu.h')
-rw-r--r-- | isisd/isis_pdu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_pdu.h b/isisd/isis_pdu.h index f1cd6d4c1..0fa3b2c7a 100644 --- a/isisd/isis_pdu.h +++ b/isisd/isis_pdu.h @@ -208,7 +208,7 @@ int isis_receive(struct thread *thread); /* * Sending functions */ -int send_hello_cb(struct thread *thread); +void send_hello_sched(struct isis_circuit *circuit, int level, long delay); int send_csnp(struct isis_circuit *circuit, int level); int send_l1_csnp(struct thread *thread); int send_l2_csnp(struct thread *thread); |