Commit a99c21d7 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

whitespace ocd

parent ce581db3
...@@ -61,32 +61,32 @@ typedef void vdi_destroy_f(const struct director *); ...@@ -61,32 +61,32 @@ typedef void vdi_destroy_f(const struct director *);
typedef void vdi_panic_f(const struct director *, struct vsb *); typedef void vdi_panic_f(const struct director *, struct vsb *);
struct director { struct director {
unsigned magic; unsigned magic;
#define DIRECTOR_MAGIC 0x3336351d #define DIRECTOR_MAGIC 0x3336351d
const char *name; const char *name;
char *vcl_name; char *vcl_name;
vdi_http1pipe_f *http1pipe; vdi_http1pipe_f *http1pipe;
vdi_healthy_f *healthy; vdi_healthy_f *healthy;
vdi_resolve_f *resolve; vdi_resolve_f *resolve;
vdi_gethdrs_f *gethdrs; vdi_gethdrs_f *gethdrs;
vdi_getbody_f *getbody; vdi_getbody_f *getbody;
vdi_getip_f *getip; vdi_getip_f *getip;
vdi_finish_f *finish; vdi_finish_f *finish;
vdi_event_f *event; vdi_event_f *event;
vdi_destroy_f *destroy; vdi_destroy_f *destroy;
vdi_panic_f *panic; vdi_panic_f *panic;
void *priv; void *priv;
const void *priv2; const void *priv2;
/* Internal Housekeeping fields */ /* Internal Housekeeping fields */
char *cli_name; char *cli_name;
VTAILQ_ENTRY(director) vcl_list; VTAILQ_ENTRY(director) vcl_list;
struct vcl *vcl; struct vcl *vcl;
unsigned health; unsigned health;
const struct vdi_ahealth *admin_health; const struct vdi_ahealth *admin_health;
double health_changed; double health_changed;
}; };
unsigned VDI_Healthy(const struct director *, double *); unsigned VDI_Healthy(const struct director *, double *);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment