From 052917961ae4052038a278fe643900630bdfc048 Mon Sep 17 00:00:00 2001 From: Evgeny Khramtsov Date: Wed, 24 Jul 2019 10:13:51 +0300 Subject: Add 'certauth' command to extauth port --- src/extauth.erl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/extauth.erl') diff --git a/src/extauth.erl b/src/extauth.erl index 9d9a59de2..cad8054c0 100644 --- a/src/extauth.erl +++ b/src/extauth.erl @@ -31,7 +31,7 @@ %% API -export([start/1, stop/1, reload/1, start_link/2]). -export([check_password/3, set_password/3, try_register/3, remove_user/2, - remove_user/3, user_exists/2]). + remove_user/3, user_exists/2, check_certificate/3]). -export([prog_name/1, pool_name/1, worker_name/2, pool_size/1]). -export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). @@ -61,6 +61,9 @@ start_link(Name, Prog) -> check_password(User, Server, Password) -> call_port(Server, [<<"auth">>, User, Server, Password]). +check_certificate(User, Server, Certificate) -> + call_port(Server, [<<"certauth">>, User, Server, Certificate]). + user_exists(User, Server) -> call_port(Server, [<<"isuser">>, User, Server]). -- cgit v1.2.3