File: regdbdump.c

package info (click to toggle)
crda 3.18-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 508 kB
  • sloc: ansic: 2,599; makefile: 188; python: 130; sh: 6
file content (41 lines) | stat: -rw-r--r-- 900 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <stdio.h>
#include <errno.h>
#include "reglib.h"

static void reglib_regdbdump(const struct reglib_regdb_ctx *ctx)
{
	const struct ieee80211_regdomain *rd = NULL;
	unsigned int idx = 0;

	reglib_for_each_country(rd, idx, ctx) {
		if (!reglib_is_valid_rd(rd)) {
			fprintf(stderr, "country %.2s: invalid\n", rd->alpha2);
			free((struct ieee80211_regdomain *) rd);
			continue;
		}
		reglib_print_regdom(rd);
		free((struct ieee80211_regdomain *) rd);
	}
}

int main(int argc, char **argv)
{
	const struct reglib_regdb_ctx *ctx;

	if (argc != 2) {
		fprintf(stderr, "Usage: %s <regulatory-binary-file>\n", argv[0]);
		return -EINVAL;
	}

	ctx = reglib_malloc_regdb_ctx(argv[1]);
	if (!ctx) {
		fprintf(stderr, "Invalid or empty regulatory file, note: "
			"a binary regulatory file should be used.\n");
		return -EINVAL;
	}

	reglib_regdbdump(ctx);
	reglib_free_regdb_ctx(ctx);

	return 0;
}