memset (ret, 0, sizeof (*ret));
ret->interface = ros_reply_param_val_by_key (r, "interface");
+ ret->radio_name = ros_reply_param_val_by_key (r, "radio-name");
+
+ ret->ap = sstrtob (ros_reply_param_val_by_key (r, "ap"));
+ ret->wds = sstrtob (ros_reply_param_val_by_key (r, "wds"));
ret->rx_rate = sstrtod (ros_reply_param_val_by_key (r, "rx-rate"));
ret->tx_rate = sstrtod (ros_reply_param_val_by_key (r, "tx-rate"));
{
/* Name of the interface */
const char *interface;
+ /* Name of the remote radio */
+ const char *radio_name;
+
+ /* ap is set to true, if the REMOTE radio is an access point. */
+ _Bool ap;
+ _Bool wds;
/* Receive and transmit rate in MBit/s */
double rx_rate;