diff options
| author | Christian Franke <chris@opensourcerouting.org> | 2018-09-27 14:23:06 +0200 | 
|---|---|---|
| committer | Christian Franke <chris@opensourcerouting.org> | 2018-10-05 14:05:28 +0200 | 
| commit | a5b5e946ce1d20173f522345354a59b5025fe138 (patch) | |
| tree | 9bd0efc951e1e9b8950fff31fc93213bcaded7f3 /isisd/isis_events.c | |
| parent | 52df822874baeda7d542cd1d0f43049beed5cc90 (diff) | |
isisd: Replace isis_event_adjacency_state_change with a hook
Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Diffstat (limited to 'isisd/isis_events.c')
| -rw-r--r-- | isisd/isis_events.c | 19 | 
1 files changed, 0 insertions, 19 deletions
diff --git a/isisd/isis_events.c b/isisd/isis_events.c index 5dcc0a1324..9f58c24b71 100644 --- a/isisd/isis_events.c +++ b/isisd/isis_events.c @@ -216,25 +216,6 @@ void isis_circuit_is_type_set(struct isis_circuit *circuit, int newtype)   *   * ***********************************************************************/ -void isis_event_adjacency_state_change(struct isis_adjacency *adj, int newstate) -{ -	/* adjacency state change event. -	 * - the only proto-type was supported */ - -	/* invalid arguments */ -	if (!adj || !adj->circuit || !adj->circuit->area) -		return; - -	if (isis->debugs & DEBUG_EVENTS) -		zlog_debug("ISIS-Evt (%s) Adjacency State change", -			   adj->circuit->area->area_tag); - -	/* LSP generation again */ -	lsp_regenerate_schedule(adj->circuit->area, IS_LEVEL_1 | IS_LEVEL_2, 0); - -	return; -} -  /* events supporting code */  int isis_event_dis_status_change(struct thread *thread)  | 
