/* * Soft: Perform a GET query to a remote HTTP/HTTPS server. * Set a timer to compute global remote server response * time. * * Part: ssl.c include file. * * Version: $Id: ssl.h,v 1.1.1.1 2005/02/14 15:45:26 clement Exp $ * * Authors: Alexandre Cassen, * * 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. * * 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 * 2 of the License, or (at your option) any later version. * * Copyright (C) 2001-2005 Alexandre Cassen, */ #ifndef _SSL_H #define _SSL_H #include /* Prototypes */ extern void init_ssl(void); extern int ssl_connect(thread * thread_obj); extern int ssl_printerr(int err); extern int ssl_send_request(SSL * ssl, char *str_request, int request_len); extern int ssl_read_thread(thread * thread_obj); #endif