~ubuntu-branches/ubuntu/trusty/keepalived/trusty

« back to all changes in this revision

Viewing changes to keepalived/include/check_ssl.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt
  • Date: 2005-04-29 23:22:40 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050429232240-a8m3jtpi3cvuyyy2
Tags: 1.1.11-3
Added a warning about sarge kernels to README.Debian and 
the package description 

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 *
6
6
 * Part:        check_http.c include file.
7
7
 *
8
 
 * Version:     $Id: check_http.h,v 1.1.7 2004/04/04 23:28:05 acassen Exp $
 
8
 * Version:     $Id: check_http.h,v 1.1.11 2005/03/01 01:22:13 acassen Exp $
9
9
 *
10
10
 * Authors:     Alexandre Cassen, <acassen@linux-vs.org>
11
11
 *              Jan Holmberg, <jan@artech.net>
20
20
 *              as published by the Free Software Foundation; either version
21
21
 *              2 of the License, or (at your option) any later version.
22
22
 *
23
 
 * Copyright (C) 2001-2004 Alexandre Cassen, <acassen@linux-vs.org>
 
23
 * Copyright (C) 2001-2005 Alexandre Cassen, <acassen@linux-vs.org>
24
24
 */
25
25
 
26
 
#ifndef _SSL_H
27
 
#define _SSL_H
 
26
#ifndef _CHECK_SSL_H
 
27
#define _CHECK_SSL_H
28
28
 
29
29
/* local includes */
30
30
#include "check_http.h"
33
33
extern void install_ssl_check_keyword(void);
34
34
extern int init_ssl_ctx(void);
35
35
extern void clear_ssl(SSL_DATA * ssl);
36
 
extern int ssl_connect(thread * thread);
 
36
extern int ssl_connect(thread * thread_obj);
37
37
extern int ssl_printerr(int err);
38
38
extern int ssl_send_request(SSL * ssl, char *str_request, int request_len);
39
 
extern int ssl_read_thread(thread * thread);
 
39
extern int ssl_read_thread(thread * thread_obj);
40
40
 
41
41
#endif