X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fauths%2Ftls.c;h=56f5f5e92152552fdbfdc7bd2908b750c8dc09a5;hb=49132a3bb5c65364b1d9cc5b405bd0ef046e7828;hp=2a995125eea4dc19ee6270e6a99244ef1209bea4;hpb=d4ff61d1edff4054497632be7f36ede86bb8ebec;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/auths/tls.c b/src/src/auths/tls.c index 2a995125e..56f5f5e92 100644 --- a/src/src/auths/tls.c +++ b/src/src/auths/tls.c @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) Jeremy Harris 2015 */ +/* Copyright (c) Jeremy Harris 1995 - 2018 */ /* See the file NOTICE for conditions of use and distribution. */ /* This file provides an Exim authenticator driver for @@ -40,6 +40,19 @@ auth_tls_options_block auth_tls_option_defaults = { }; +#ifdef MACRO_PREDEF + +/* Dummy values */ +void auth_tls_init(auth_instance *ablock) {} +int auth_tls_server(auth_instance *ablock, uschar *data) {return 0;} +int auth_tls_client(auth_instance *ablock, void * sx, + int timeout, uschar *buffer, int buffsize) {return 0;} + +#else /*!MACRO_PREDEF*/ + + + + /************************************************* * Initialization entry point * *************************************************/ @@ -77,4 +90,5 @@ return auth_check_serv_cond(ablock); } +#endif /*!MACRO_PREDEF*/ /* End of tls.c */