~ubuntu-branches/ubuntu/trusty/haproxy/trusty-updates

« back to all changes in this revision

Viewing changes to include/proto/checks.h

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Cornet
  • Date: 2010-04-15 20:00:34 UTC
  • mfrom: (1.2.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20100415200034-mtlky4sy39tk0dfi
Tags: upstream-1.4.4
ImportĀ upstreamĀ versionĀ 1.4.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <types/task.h>
26
26
#include <common/config.h>
27
27
 
 
28
const char *get_check_status_description(short check_status);
 
29
const char *get_check_status_info(short check_status);
 
30
void set_server_down(struct server *s);
 
31
void set_server_up(struct server *s);
28
32
struct task *process_chk(struct task *t);
29
33
int start_checks();
 
34
void health_adjust(struct server *s, short status);
30
35
 
31
36
#endif /* _PROTO_CHECKS_H */
32
37