summaryrefslogtreecommitdiffstats
path: root/src/dect-cell-list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dect-cell-list.c')
-rw-r--r--src/dect-cell-list.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/dect-cell-list.c b/src/dect-cell-list.c
new file mode 100644
index 0000000..bb946ed
--- /dev/null
+++ b/src/dect-cell-list.c
@@ -0,0 +1,24 @@
+#include "netlink/cli/utils.h"
+
+int main(int argc, char *argv[])
+{
+ struct nl_sock *sock;
+ struct nl_cache *cell_cache;
+ struct nl_cache *cluster_cache;
+ struct nl_dump_params params = {
+ .dp_type = NL_DUMP_LINE,
+ .dp_fd = stdout,
+ };
+
+ sock = nl_cli_alloc_socket();
+ nl_cli_connect(sock, NETLINK_DECT);
+ if (nl_dect_cluster_alloc_cache(sock, &cluster_cache))
+ exit(1);
+ nl_cache_mngt_provide(cluster_cache);
+ if (nl_dect_cell_alloc_cache(sock, &cell_cache))
+ exit(1);
+
+ nl_cache_dump(cell_cache, &params);
+ return 0;
+}
+