diff options
author | Jouni Malinen <j@w1.fi> | 2014-01-04 11:10:41 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-01-07 08:45:10 (GMT) |
commit | 1f965e622a5351ee50d00bbc7285ec84bb2af1c7 (patch) | |
tree | 518c4440062d473a6dbbabace9370e716db86ff4 /src | |
parent | e766f56643f91cc1071d5a5ed43582cb404ec5a8 (diff) | |
download | hostap-1f965e622a5351ee50d00bbc7285ec84bb2af1c7.zip hostap-1f965e622a5351ee50d00bbc7285ec84bb2af1c7.tar.gz hostap-1f965e622a5351ee50d00bbc7285ec84bb2af1c7.tar.bz2 |
Allow external programs to request wpa_radio work items
The new control interface command RADIO_WORK can be used by external
programs to request radio allocation slots from wpa_supplicant if
exclusive radio control is needed, e.g., for offchannel operations. If
such operations are done directly to the driver, wpa_supplicant may not
have enough information to avoid conflicting operations. This new
command can be used to provide enough information and radio scheduling
to avoid issues with such cases.
Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src')
-rw-r--r-- | src/common/wpa_ctrl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/wpa_ctrl.h b/src/common/wpa_ctrl.h index 030df13..9bd59a9 100644 --- a/src/common/wpa_ctrl.h +++ b/src/common/wpa_ctrl.h @@ -162,6 +162,9 @@ extern "C" { /* parameters: <addr> <dialog_token> <freq> <status_code> <result> */ #define GAS_QUERY_DONE "GAS-QUERY-DONE " +#define EXT_RADIO_WORK_START "EXT-RADIO-WORK-START " +#define EXT_RADIO_WORK_TIMEOUT "EXT-RADIO-WORK-TIMEOUT " + /* hostapd control interface - fixed message prefixes */ #define WPS_EVENT_PIN_NEEDED "WPS-PIN-NEEDED " #define WPS_EVENT_NEW_AP_SETTINGS "WPS-NEW-AP-SETTINGS " |