mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-10 09:07:02 +02:00
This commit is renaming of module proto_reverse_connect to proto_rhttp. This name is selected as it is shorter and more precise.
15 lines
471 B
C
15 lines
471 B
C
#ifndef _HAPROXY_PROTO_RHTTP_H_T
|
|
#define _HAPROXY_PROTO_RHTTP_H_T
|
|
|
|
/* State for reverse preconnect listener state machine.
|
|
* Used to limit log reporting only on state changes.
|
|
*/
|
|
enum li_preconn_state {
|
|
LI_PRECONN_ST_STOP, /* pre-connect task inactive */
|
|
LI_PRECONN_ST_INIT, /* pre-connect task bootstrapped */
|
|
LI_PRECONN_ST_ERR, /* last pre-connect attempt failed */
|
|
LI_PRECONN_ST_FULL, /* pre-connect maxconn reached */
|
|
};
|
|
|
|
#endif /* _HAPROXY_PROTO_RHTTP_H_T */
|