예제 #1
0
파일: nhrp_route.c 프로젝트: ton31337/frr
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]);
}
예제 #2
0
파일: isis_zebra.c 프로젝트: OPSF/uClinux
void
isis_zebra_finish ()
{
    zclient_stop (zclient);
    zclient_free (zclient);
    zclient = (struct zclient *) NULL;

    return;
}
예제 #3
0
파일: bgp_zebra.c 프로젝트: KaloNK/quagga
void
bgp_zebra_destroy(void)
{
  if (zclient == NULL)
    return;
  zclient_stop(zclient);
  zclient_free(zclient);
  zclient = NULL;
}
예제 #4
0
파일: rip_zebra.c 프로젝트: ton31337/frr
void rip_zclient_stop(void)
{
	zclient_stop(zclient);
	zclient_free(zclient);
}