mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-15 03:26:59 +02:00
Create a new module init which contains code related to REGISTER_* macros for initcalls. init.h is included in api.h to make init code available to all modules. It's a step to clean up a bit haproxy.c/global.h.
60 lines
868 B
C
60 lines
868 B
C
#ifndef _HAPROXY_INIT_T_H
|
|
#define _HAPROXY_INIT_T_H
|
|
|
|
#include <haproxy/list-t.h>
|
|
|
|
struct proxy;
|
|
struct server;
|
|
|
|
struct post_check_fct {
|
|
struct list list;
|
|
int (*fct)();
|
|
};
|
|
|
|
struct post_proxy_check_fct {
|
|
struct list list;
|
|
int (*fct)(struct proxy *);
|
|
};
|
|
|
|
struct post_server_check_fct {
|
|
struct list list;
|
|
int (*fct)(struct server *);
|
|
};
|
|
|
|
struct per_thread_alloc_fct {
|
|
struct list list;
|
|
int (*fct)();
|
|
};
|
|
|
|
struct per_thread_init_fct {
|
|
struct list list;
|
|
int (*fct)();
|
|
};
|
|
|
|
struct post_deinit_fct {
|
|
struct list list;
|
|
void (*fct)();
|
|
};
|
|
|
|
struct proxy_deinit_fct {
|
|
struct list list;
|
|
void (*fct)(struct proxy *);
|
|
};
|
|
|
|
struct server_deinit_fct {
|
|
struct list list;
|
|
void (*fct)(struct server *);
|
|
};
|
|
|
|
struct per_thread_free_fct {
|
|
struct list list;
|
|
void (*fct)();
|
|
};
|
|
|
|
struct per_thread_deinit_fct {
|
|
struct list list;
|
|
void (*fct)();
|
|
};
|
|
|
|
#endif /* _HAPROXY_INIT_T_H */
|