blob: ea14730674673f834a8d5c3e05b5422f25c56930 [file] [log] [blame]
#include <stdio.h>
#include <errno.h>
#include "reglib.h"
int main(int argc, char **argv)
{
const struct ieee80211_regdomain *rd = NULL;
unsigned int idx = 0;
if (argc != 2) {
fprintf(stderr, "Usage: %s <filename>\n", argv[0]);
return 2;
}
reglib_for_each_country(rd, idx, argv[1]) {
reglib_print_regdom(rd);
free((struct ieee80211_regdomain *) rd);
}
if (!idx) {
printf("Invalid or empty regulatory file, note: "
"a binary regulatory file should be used.\n");
return -EINVAL;
}
return 0;
}