search for: drtables

Displaying 1 result from an estimated 1 matches for "drtables".

2004 Dec 09
1
Exim4 authentication patch
...tication mechanism. */ +optionlist auth_dovecot_options[] = { + { + "server_socket", + opt_stringptr, + (void *)(offsetof(auth_dovecot_options_block, server_socket)) + }, +}; + +/* Size of the options list. An extern variable has to be used so that its +address can appear in the tables drtables.c. */ +int auth_dovecot_options_count = + sizeof(auth_dovecot_options) / sizeof(optionlist); + +/* Default private options block for the authentication method. */ +auth_dovecot_options_block auth_dovecot_option_defaults = { + NULL, /* server_socket */ +}; + +/************************************...