diff options
author | Christian Franke <chris@opensourcerouting.org> | 2018-10-10 11:16:39 +0200 |
---|---|---|
committer | Christian Franke <chris@opensourcerouting.org> | 2018-12-04 12:49:25 +0100 |
commit | 7c4f7aabc5866238584dfd9497ec6cef32311ca1 (patch) | |
tree | 23e5bd786dee59dfda8dbeaa4010e18ae55808b0 /isisd/isis_pdu.h | |
parent | isisd: Add level&circuit thread argument to circuit (diff) | |
download | frr-7c4f7aabc5866238584dfd9497ec6cef32311ca1.tar.xz frr-7c4f7aabc5866238584dfd9497ec6cef32311ca1.zip |
isisd: reduce code duplication for levels
Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Diffstat (limited to 'isisd/isis_pdu.h')
-rw-r--r-- | isisd/isis_pdu.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/isisd/isis_pdu.h b/isisd/isis_pdu.h index 3d2420eb0..f1cd6d4c1 100644 --- a/isisd/isis_pdu.h +++ b/isisd/isis_pdu.h @@ -208,9 +208,7 @@ int isis_receive(struct thread *thread); /* * Sending functions */ -int send_lan_l1_hello(struct thread *thread); -int send_lan_l2_hello(struct thread *thread); -int send_p2p_hello(struct thread *thread); +int send_hello_cb(struct thread *thread); int send_csnp(struct isis_circuit *circuit, int level); int send_l1_csnp(struct thread *thread); int send_l2_csnp(struct thread *thread); |