From 9acee22dd82472bf408204a066476334c3568e87 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Wed, 25 Jun 2025 19:49:01 +0000 Subject: Add rproxy Signed-off-by: Laurent Bercot --- src/include/tipidee/conf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include') diff --git a/src/include/tipidee/conf.h b/src/include/tipidee/conf.h index aa8cb45..a173d6a 100644 --- a/src/include/tipidee/conf.h +++ b/src/include/tipidee/conf.h @@ -25,11 +25,11 @@ struct tipidee_conf_s typedef struct tipidee_redirection_s tipidee_redirection, *tipidee_redirection_ref ; struct tipidee_redirection_s { - char const *location ; char const *sub ; - uint32_t type : 2 ; + char const *location ; + uint8_t type ; } ; -#define TIPIDEE_REDIRECTION_ZERO { .location = 0, .sub = 0, .type = 0 } +#define TIPIDEE_REDIRECTION_ZERO { .sub = 0, .location = 0, .type = 0 } extern void tipidee_conf_free (tipidee_conf *) ; extern int tipidee_conf_init (tipidee_conf *, char const *) ; -- cgit v1.3.1