SRB2/libs/miniupnpc/include/upnpreplyparse.h

64 lines
1.3 KiB
C
Raw Normal View History

2023-12-30 16:35:35 +00:00
/* $Id: upnpreplyparse.h,v 1.19 2014/10/27 16:33:19 nanard Exp $ */
2014-03-15 16:59:03 +00:00
/* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
2023-12-30 16:35:35 +00:00
* (c) 2006-2013 Thomas Bernard
2014-03-15 16:59:03 +00:00
* This software is subject to the conditions detailed
* in the LICENCE file provided within the distribution */
2023-12-30 16:35:35 +00:00
#ifndef UPNPREPLYPARSE_H_INCLUDED
#define UPNPREPLYPARSE_H_INCLUDED
2014-03-15 16:59:03 +00:00
#ifdef __cplusplus
extern "C" {
#endif
struct NameValue {
2023-12-30 16:35:35 +00:00
struct NameValue * l_next;
char name[64];
char value[128];
2014-03-15 16:59:03 +00:00
};
struct NameValueParserData {
2023-12-30 16:35:35 +00:00
struct NameValue * l_head;
char curelt[64];
2014-03-15 16:59:03 +00:00
char * portListing;
int portListingLength;
2023-12-30 16:35:35 +00:00
int topelt;
const char * cdata;
int cdatalen;
2014-03-15 16:59:03 +00:00
};
/* ParseNameValue() */
void
ParseNameValue(const char * buffer, int bufsize,
struct NameValueParserData * data);
/* ClearNameValueList() */
void
ClearNameValueList(struct NameValueParserData * pdata);
/* GetValueFromNameValueList() */
char *
GetValueFromNameValueList(struct NameValueParserData * pdata,
const char * Name);
2023-12-30 16:35:35 +00:00
#if 0
2014-03-15 16:59:03 +00:00
/* GetValueFromNameValueListIgnoreNS() */
char *
GetValueFromNameValueListIgnoreNS(struct NameValueParserData * pdata,
const char * Name);
2023-12-30 16:35:35 +00:00
#endif
2014-03-15 16:59:03 +00:00
/* DisplayNameValueList() */
#ifdef DEBUG
void
DisplayNameValueList(char * buffer, int bufsize);
#endif
#ifdef __cplusplus
}
#endif
#endif