freqband
if (iseq(name, "freqband") && mt->freqband == NULL && mt->netband != NULL) {
if (iseq(name, "freqband") && mt->freqband == NULL) {
mt->freqband = calloc(1, sizeof(struct freqband));
mt->freqband->id = strdup(id);
LIST_INSERT_HEAD(&mt->rdp->freqbands, mt->freqband, next);
if (iseq(name, "freqstart") && mt->freqband != NULL) {
mt->freqband->freqStart = strtoul(p, NULL, 0);
if (iseq(name, "freqend") && mt->freqband != NULL) {
mt->freqband->freqEnd = strtoul(p, NULL, 0);
if (iseq(name, "chanwidth") && mt->freqband != NULL) {
mt->freqband->chanWidth = strtoul(p, NULL, 0);
if (iseq(name, "chansep") && mt->freqband != NULL) {
mt->freqband->chanSep = strtoul(p, NULL, 0);
if (mt->freqband != NULL)
mt->freqband->flags |= decode_flag(mt, p, len);
if (iseq(name, "freqband") && mt->freqband != NULL) {
mt->freqband = NULL;
struct freqband *fp;
struct freqband *freqband; /* current freqband */
struct freqband *fp = LIST_FIRST(&rdp->freqbands);
LIST_ENTRY(freqband) next;
const struct freqband *band; /* channel list description */
LIST_HEAD(, freqband) freqbands; /* frequency band table */
const struct freqband *b;
hc->flags.freqband = MALO_FREQ_BAND_2DOT4GHZ;
uint32_t freqband : 6,