From 3cb23ddc6bea946a729630def0f76d06a37ec63d Mon Sep 17 00:00:00 2001
From: Hans Nilsson
Date: Tue, 9 Jun 2015 15:02:35 +0200
Subject: ssh: doc change for keyboard-interaction, pwd->password
---
lib/ssh/doc/src/ssh.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'lib/ssh/doc')
diff --git a/lib/ssh/doc/src/ssh.xml b/lib/ssh/doc/src/ssh.xml
index 5edd790400..878dcb33d0 100644
--- a/lib/ssh/doc/src/ssh.xml
+++ b/lib/ssh/doc/src/ssh.xml
@@ -388,14 +388,14 @@ kex is implicit but public_key is set explicitly.
where:
-
PromptTexts = kb_int_tuple() | fun(PeerName::string(), User::string(), Service::string()) -> kb_int_tuple()
+
PromptTexts = kb_int_tuple() | fun(Peer::{IP::tuple(),Port::integer()}, User::string(), Service::string()) -> kb_int_tuple()
kb_int_tuple() = {Name::string(), Instruction::string(), Prompt::string(), Echo::boolean()}
-
Sets the text strings that the daemon sends to the client for presentation to the user when using keyboar-interactive authentication. If the fun/3 is used, it is called when the actual authentication occurs and may therefore return dynamic data like time, remote ip etc.
The parameter Echo guides the client about need to hide the password.
The default value is:
- {auth_method_kb_interactive_data, {"SSH server", "Enter password for \""++User++"\"", "pwd: ", false}>
+ {auth_method_kb_interactive_data, {"SSH server", "Enter password for \""++User++"\"", "password: ", false}>