X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/18481de384caecff421f23f715be916403f5d0ee..584e96c65f12aca9414450b656504af6e3f7a399:/src/src/globals.c diff --git a/src/src/globals.c b/src/src/globals.c index 2e3fe4074..ba1336633 100644 --- a/src/src/globals.c +++ b/src/src/globals.c @@ -185,7 +185,10 @@ incoming TCP/IP. The defaults use stdin. We never need these for any stand-alone tests. */ #ifndef STAND_ALONE +int (*lwr_receive_getc)(void) = stdin_getc; +int (*lwr_receive_ungetc)(int) = stdin_ungetc; int (*receive_getc)(void) = stdin_getc; +void (*receive_get_cache)(void)= NULL; int (*receive_ungetc)(int) = stdin_ungetc; int (*receive_feof)(void) = stdin_feof; int (*receive_ferror)(void) = stdin_ferror; @@ -495,7 +498,10 @@ int check_spool_space = 0; uschar *chunking_advertise_hosts = US"*"; unsigned chunking_datasize = 0; +unsigned chunking_data_left = 0; +BOOL chunking_offered = FALSE; chunking_state_t chunking_state= CHUNKING_NOT_OFFERED; +const pcre *regex_CHUNKING = NULL; uschar *client_authenticator = NULL; uschar *client_authenticated_id = NULL;