/* HTTP utility functions Copyright (C) 1999-2001, Joe Orton This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #include "config.h" #include #ifdef HAVE_STRING_H #include #endif #include /* isdigit() for http_parse_statusline */ #include "dates.h" #include "http_utils.h" #ifdef ENABLE_SSL #include #endif int neon_debug_mask = 0; FILE *neon_debug_stream; void neon_debug_init(FILE *stream, int mask) { neon_debug_stream = stream; neon_debug_mask = mask; } void neon_debug(int ch, const char *template, ...) { va_list params; if ((ch&neon_debug_mask) != ch) return; fflush(stdout); va_start(params, template); vfprintf(neon_debug_stream, template, params); va_end(params); if ((ch&DEBUG_FLUSH) == DEBUG_FLUSH) { fflush(neon_debug_stream); } } static const char *version_string = "neon " NEON_VERSION ": " #ifdef NEON_IS_LIBRARY "Library build" #else "Bundled build" #endif #ifdef HAVE_EXPAT ", Expat" #else #ifdef HAVE_LIBXML ", libxml" #endif #endif #ifdef ENABLE_SSL ", SSL support using " #ifdef OPENSSL_VERSION_TEXT OPENSSL_VERSION_TEXT #else "unknown SSL library" #endif /* OPENSSL_VERSION_TEXT */ #else /* !ENABLE_SSL */ ", no OpenSSL support" #endif /* ENABLE_SSL */ ; const char *neon_version_string(void) { return version_string; } int neon_version_minimum(int major, int minor) { return (NEON_VERSION_MAJOR < major) || (NEON_VERSION_MINOR < minor); } /* HTTP-date parser */ time_t http_dateparse(const char *date) { time_t tmp; tmp = rfc1123_parse(date); if (tmp == -1) { tmp = rfc1036_parse(date); if (tmp == -1) tmp = asctime_parse(date); } return tmp; } int http_parse_statusline(const char *status_line, http_status *st) { const char *part; int major, minor, status_code, klass; /* Check they're speaking the right language */ if (strncmp(status_line, "HTTP/", 5) != 0) { return -1; } /* And find out which dialect of this peculiar language * they can talk... */ major = 0; minor = 0; /* Note, we're good children, and accept leading zero's on the * version numbers */ for (part = status_line + 5; *part != '\0' && isdigit(*part); part++) { major = major*10 + (*part-'0'); } if (*part != '.') { return -1; } for (part++ ; *part != '\0' && isdigit(*part); part++) { minor = minor*10 + (*part-'0'); } if (*part != ' ') { return -1; } /* Skip any spaces */ for (; *part == ' ' ; part++) /* noop */; /* Now for the Status-Code. part now points at the first Y in * "HTTP/x.x YYY". We want value of YYY... could use atoi, but * probably quicker this way. */ if (!isdigit(part[0]) || !isdigit(part[1]) || !isdigit(part[2])) { return -1; } status_code = 100*(part[0]-'0') + 10*(part[1]-'0') + (part[2]-'0'); klass = part[0]-'0'; /* Skip whitespace between status-code and reason-phrase */ for (part+=3; *part == ' ' || *part == '\t'; part++) /* noop */; if (*part == '\0') { return -1; } /* Fill in the results */ st->major_version = major; st->minor_version = minor; st->reason_phrase = part; st->code = status_code; st->klass = klass; return 0; }