upnp_xml.h revision 214501
1258400Sdteske/*
2258400Sdteske * UPnP XML helper routines
3258400Sdteske * Copyright (c) 2000-2003 Intel Corporation
4258400Sdteske * Copyright (c) 2006-2007 Sony Corporation
5258400Sdteske * Copyright (c) 2008-2009 Atheros Communications
6258400Sdteske * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
7258400Sdteske *
8258400Sdteske * See wps_upnp.c for more details on licensing and code history.
9 */
10
11#ifndef UPNP_XML_H
12#define UPNP_XML_H
13
14#include "http.h"
15
16void xml_data_encode(struct wpabuf *buf, const char *data, int len);
17void xml_add_tagged_data(struct wpabuf *buf, const char *tag,
18			 const char *data);
19char * xml_get_first_item(const char *doc, const char *item);
20struct wpabuf * xml_get_base64_item(const char *data, const char *name,
21				    enum http_reply_code *ret);
22
23#endif /* UPNP_XML_H */
24