diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2025-06-25 19:49:01 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska@appnovation.com> | 2025-06-25 19:49:01 +0000 |
| commit | 9acee22dd82472bf408204a066476334c3568e87 (patch) | |
| tree | 2ba82c4cba39e633dcbf422f67cc3fe27f87a8df /src/include | |
| parent | 592c13a20f5ece4a596635c75bf096ccd3dfa6b8 (diff) | |
| download | tipidee-9acee22dd82472bf408204a066476334c3568e87.tar.gz | |
Add rproxy
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/tipidee/conf.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 *) ; |
