upnp_xml.h 797 B

12345678910111213141516171819202122232425
  1. /*
  2. * UPnP XML helper routines
  3. * Copyright (c) 2000-2003 Intel Corporation
  4. * Copyright (c) 2006-2007 Sony Corporation
  5. * Copyright (c) 2008-2009 Atheros Communications
  6. * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
  7. *
  8. * See wps_upnp.c for more details on licensing and code history.
  9. */
  10. #ifndef UPNP_XML_H
  11. #define UPNP_XML_H
  12. #include "http.h"
  13. void xml_data_encode(struct wpabuf *buf, const char *data, int len);
  14. void xml_add_tagged_data(struct wpabuf *buf, const char *tag,
  15. const char *data);
  16. int xml_next_tag(const char *in, const char **out,
  17. const char **out_tagname, const char **end);
  18. char * xml_get_first_item(const char *doc, const char *item);
  19. struct wpabuf * xml_get_base64_item(const char *data, const char *name,
  20. enum http_reply_code *ret);
  21. #endif /* UPNP_XML_H */