1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00

Win32 compatibility courtesy of Oddsock.

svn path=/trunk/httpp/; revision=2188
This commit is contained in:
Jack Moffitt 2001-10-20 04:41:54 +00:00
parent a3c3d6f277
commit 5b7d386256

View File

@ -11,6 +11,10 @@
#include "avl.h"
#include "httpp.h"
#ifdef _WIN32
#define strcasecmp stricmp
#endif
/* internal functions */
/* misc */
@ -47,10 +51,11 @@ int httpp_parse(http_parser_t *parser, char *http_data, unsigned long len)
char *line[32]; /* limited to 32 lines, should be more than enough */
int i, l, retlen;
int lines;
char *req_type;
char *uri;
char *version;
char *name, *value;
char *req_type = NULL;
char *uri = NULL;
char *version = NULL;
char *name = NULL;
char *value = NULL;
int whitespace, where;
int slen;