Exemple #1
0
void nhrp_zebra_terminate(void)
{
	zclient_stop(zclient);
	zclient_free(zclient);
	route_table_finish(zebra_rib[AFI_IP]);
	route_table_finish(zebra_rib[AFI_IP6]);
}
Exemple #2
0
void
isis_zebra_finish ()
{
    zclient_stop (zclient);
    zclient_free (zclient);
    zclient = (struct zclient *) NULL;

    return;
}
Exemple #3
0
void
bgp_zebra_destroy(void)
{
  if (zclient == NULL)
    return;
  zclient_stop(zclient);
  zclient_free(zclient);
  zclient = NULL;
}
Exemple #4
0
void rip_zclient_stop(void)
{
	zclient_stop(zclient);
	zclient_free(zclient);
}