summaryrefslogtreecommitdiffstats
path: root/example/fp-broadcast-page.c
blob: 6a5dbc5104660dcd9ec27bfb6d4b6dd4b4e495c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dect/libdect.h>
#include "common.h"
#include <lce.h>

static struct dect_ops ops;

int main(int argc, char **argv)
{
	dect_fp_common_options(argc, argv);
	dect_common_init(&ops, cluster);

	dect_lce_group_ring_req(dh, 0);
	dect_event_loop();

	dect_common_cleanup(dh);
	return 0;
}