wps_dev_attr.h 996 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Wi-Fi Protected Setup - device attributes
  3. * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #ifndef WPS_DEV_ATTR_H
  15. #define WPS_DEV_ATTR_H
  16. struct wps_parse_attr;
  17. int wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg);
  18. int wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg);
  19. int wps_process_device_attrs(struct wps_device_data *dev,
  20. struct wps_parse_attr *attr);
  21. int wps_process_os_version(struct wps_device_data *dev, const u8 *ver);
  22. void wps_device_data_dup(struct wps_device_data *dst,
  23. const struct wps_device_data *src);
  24. void wps_device_data_free(struct wps_device_data *dev);
  25. #endif /* WPS_DEV_ATTR_H */