X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Fdbstuff.h;h=02cfa1446f8d2d00b8548d6315c8840c40cc92bb;hb=6940b3dfaf59844a1fd881720e9342f12922981a;hp=afb84f9128a1c1d6373abd9005e0b807c66ced61;hpb=966e829c812abf574896810d3313247348a6532c;p=exim.git diff --git a/src/src/dbstuff.h b/src/src/dbstuff.h index afb84f912..02cfa1446 100644 --- a/src/src/dbstuff.h +++ b/src/src/dbstuff.h @@ -786,5 +786,23 @@ typedef struct { uschar bloom[40]; /* Bloom filter which may be larger than this */ } dbdata_ratelimit_unique; +#ifdef EXPERIMENTAL_PIPE_CONNECT +/* This structure records the EHLO responses, cleartext and crypted, +for an IP, as bitmasks (cf. OPTION_TLS) */ + +typedef struct { + unsigned short cleartext_features; + unsigned short crypted_features; + unsigned short cleartext_auths; + unsigned short crypted_auths; +} ehlo_resp_precis; + +typedef struct { + time_t time_stamp; + /*************/ + ehlo_resp_precis data; +} dbdata_ehlo_resp; +#endif + /* End of dbstuff.h */