Add s2s_dhfile option to configuration validator

This commit is contained in:
Holger Weiss 2015-06-16 15:18:34 +02:00
parent 2110b929bc
commit e608274243
2 changed files with 2 additions and 0 deletions

View File

@ -722,6 +722,7 @@ opt_type(max_fsm_queue) ->
fun (I) when is_integer(I), I > 0 -> I end;
opt_type(s2s_certfile) -> fun iolist_to_binary/1;
opt_type(s2s_ciphers) -> fun iolist_to_binary/1;
opt_type(s2s_dhfile) -> fun iolist_to_binary/1;
opt_type(s2s_protocol_options) ->
fun (Options) ->
[_ | O] = lists:foldl(fun (X, Acc) -> X ++ Acc end, [],

View File

@ -1381,6 +1381,7 @@ opt_type(outgoing_s2s_timeout) ->
end;
opt_type(s2s_certfile) -> fun iolist_to_binary/1;
opt_type(s2s_ciphers) -> fun iolist_to_binary/1;
opt_type(s2s_dhfile) -> fun iolist_to_binary/1;
opt_type(s2s_dns_retries) ->
fun (I) when is_integer(I), I >= 0 -> I end;
opt_type(s2s_dns_timeout) ->