/*
* Copyright (C), 2000-2007 by the monit project group.
* All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#include
#ifdef HAVE_STDIO_H
#include
#endif
#ifdef HAVE_ERRNO_H
#include
#endif
#ifdef HAVE_SYS_TYPES_H
#include
#endif
#ifdef HAVE_SYS_SOCKET_H
#include
#endif
#ifdef HAVE_STRING_H
#include
#endif
#ifdef HAVE_NETINET_IN_H
#include
#endif
#ifdef HAVE_ARPA_INET_H
#include
#endif
#include "protocol.h"
/**
* A simple DWP (database wire protocol) test.
*
* We send the following request to the server:
* 'HEAD / HTTP/1.1'
* and check the server's status code.
*
* If the status code is >= 400, an error has occurred.
* Return TRUE if the status code is 200, otherwise FALSE.
*
* @author Jan-Henrik Haukeland,
* @author Martin Pala,
*
* @version \$Id: dwp.c,v 1.18 2007/07/25 12:54:32 hauk Exp $
*
* @file
*/
int check_dwp(Socket_T s) {
#define REQ_LENGTH 1024
int n;
int status;
char buf[STRLEN];
char proto[STRLEN];
ASSERT(s);
if(socket_print(s, "HEAD / HTTP/1.1\r\n"
"Connection: close\r\n\r\n") < 0) {
LogError("DWP: error sending data -- %s\n", STRERROR);
return FALSE;
}
if(! socket_readln(s, buf, sizeof(buf))) {
LogError("DWP: error receiving data -- %s\n", STRERROR);
return FALSE;
}
Util_chomp(buf);
n= sscanf(buf, "%s %d", proto, &status);
if(n!=2 || (status >= 400)) {
LogError("DWP error: %s\n", buf);
return FALSE;
}
return TRUE;
}