upnp_xml.h
Go to the documentation of this file.00001
00012 #ifndef UPNP_XML_H
00013 #define UPNP_XML_H
00014
00015 #include "http.h"
00016
00017 void xml_data_encode(struct wpabuf *buf, const char *data, int len);
00018 void xml_add_tagged_data(struct wpabuf *buf, const char *tag,
00019 const char *data);
00020 char * xml_get_first_item(const char *doc, const char *item);
00021 struct wpabuf * xml_get_base64_item(const char *data, const char *name,
00022 enum http_reply_code *ret);
00023
00024 #endif
00025