Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1 | /* |
| 2 | * wpa_supplicant - Wi-Fi Display |
| 3 | * Copyright (c) 2011, Atheros Communications, Inc. |
| 4 | * Copyright (c) 2011-2012, Qualcomm Atheros, Inc. |
| 5 | * |
| 6 | * This software may be distributed under the terms of the BSD license. |
| 7 | * See README for more details. |
| 8 | */ |
| 9 | |
| 10 | #ifndef WIFI_DISPLAY_H |
| 11 | #define WIFI_DISPLAY_H |
| 12 | |
| 13 | int wifi_display_init(struct wpa_global *global); |
| 14 | void wifi_display_deinit(struct wpa_global *global); |
| 15 | void wifi_display_enable(struct wpa_global *global, int enabled); |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 16 | struct wpabuf *wifi_display_get_wfd_ie(struct wpa_global *global); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 17 | int wifi_display_subelem_set(struct wpa_global *global, char *cmd); |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 18 | int wifi_display_subelem_set_from_ies(struct wpa_global *global, |
| 19 | struct wpabuf *ie); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 20 | int wifi_display_subelem_get(struct wpa_global *global, char *cmd, |
| 21 | char *buf, size_t buflen); |
Dmitry Shmidt | 04f534e | 2013-12-09 15:50:16 -0800 | [diff] [blame] | 22 | char * wifi_display_subelem_hex(const struct wpabuf *wfd_subelems, u8 id); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 23 | |
| 24 | #endif /* WIFI_DISPLAY_H */ |