2012-03-02 16:26:01 +01:00
|
|
|
/*
|
|
|
|
* wpa_supplicant - Wi-Fi Display
|
|
|
|
* Copyright (c) 2011, Atheros Communications, Inc.
|
|
|
|
* Copyright (c) 2011-2012, Qualcomm Atheros, Inc.
|
|
|
|
*
|
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WIFI_DISPLAY_H
|
|
|
|
#define WIFI_DISPLAY_H
|
|
|
|
|
|
|
|
int wifi_display_init(struct wpa_global *global);
|
|
|
|
void wifi_display_deinit(struct wpa_global *global);
|
|
|
|
void wifi_display_enable(struct wpa_global *global, int enabled);
|
2014-09-15 07:04:29 +02:00
|
|
|
struct wpabuf *wifi_display_get_wfd_ie(struct wpa_global *global);
|
2012-03-02 16:26:01 +01:00
|
|
|
int wifi_display_subelem_set(struct wpa_global *global, char *cmd);
|
2014-09-15 07:04:30 +02:00
|
|
|
int wifi_display_subelem_set_from_ies(struct wpa_global *global,
|
|
|
|
struct wpabuf *ie);
|
2012-03-02 16:26:01 +01:00
|
|
|
int wifi_display_subelem_get(struct wpa_global *global, char *cmd,
|
|
|
|
char *buf, size_t buflen);
|
2013-11-25 23:56:38 +01:00
|
|
|
char * wifi_display_subelem_hex(const struct wpabuf *wfd_subelems, u8 id);
|
2012-03-02 16:26:01 +01:00
|
|
|
|
|
|
|
#endif /* WIFI_DISPLAY_H */
|