source: rtems-libbsd/freebsd/contrib/wpa/wpa_supplicant/wifi_display.h @ 9c9d11b

55-freebsd-126-freebsd-12
Last change on this file since 9c9d11b was 9c9d11b, checked in by Sichen Zhao <1473996754@…>, on 08/01/17 at 12:43:41

Import wpa from FreeBSD

  • Property mode set to 100644
File size: 904 bytes
Line 
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
13int wifi_display_init(struct wpa_global *global);
14void wifi_display_deinit(struct wpa_global *global);
15void wifi_display_enable(struct wpa_global *global, int enabled);
16struct wpabuf *wifi_display_get_wfd_ie(struct wpa_global *global);
17int wifi_display_subelem_set(struct wpa_global *global, char *cmd);
18int wifi_display_subelem_set_from_ies(struct wpa_global *global,
19                                      struct wpabuf *ie);
20int wifi_display_subelem_get(struct wpa_global *global, char *cmd,
21                             char *buf, size_t buflen);
22char * wifi_display_subelem_hex(const struct wpabuf *wfd_subelems, u8 id);
23
24#endif /* WIFI_DISPLAY_H */
Note: See TracBrowser for help on using the repository browser.