diff options
author | Fredrik Gustafsson <[email protected]> | 2012-12-06 14:41:43 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2012-12-06 14:41:43 +0100 |
commit | 51f1f06bafa99291daaafe22a24a1dc4ff45d067 (patch) | |
tree | 6ce1baaf84439949d9687ef8d7a8030292111db2 /lib/ssh/doc/src | |
parent | ca3b66e3d2c734e8715c7ed078e4fa9ae10462de (diff) | |
parent | 804f2b99c8487d9707a7dc89f2df433fd1b282e1 (diff) | |
download | otp-51f1f06bafa99291daaafe22a24a1dc4ff45d067.tar.gz otp-51f1f06bafa99291daaafe22a24a1dc4ff45d067.tar.bz2 otp-51f1f06bafa99291daaafe22a24a1dc4ff45d067.zip |
Merge branch 'fredrik/ssh/doc-fun-logging/OTP-7792'
* fredrik/ssh/doc-fun-logging/OTP-7792:
Added documentation for failfun, connectfun and disconnectfun in ssh
Diffstat (limited to 'lib/ssh/doc/src')
-rw-r--r-- | lib/ssh/doc/src/ssh.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/ssh/doc/src/ssh.xml b/lib/ssh/doc/src/ssh.xml index aac4b462a2..04b7a2ae56 100644 --- a/lib/ssh/doc/src/ssh.xml +++ b/lib/ssh/doc/src/ssh.xml @@ -308,6 +308,18 @@ <item> <p>Determines if SSH shall use IPv6 or not (only used when HostAddress is set to any).</p></item> + <tag><c><![CDATA[{failfun, fun()}]]></c></tag> + <item> + <p>Provide a fun() to implement your own logging when a user fails to authenticate.</p> + </item> + <tag><c><![CDATA[{connectfun, fun()}]]></c></tag> + <item> + <p>Provide a fun() to implement your own logging when a user authenticates to the server.</p> + </item> + <tag><c><![CDATA[{disconnectfun, fun()}]]></c></tag> + <item> + <p>Provide a fun() to implement your own logging when a user disconnects from the server.</p> + </item> </taglist> </desc> </func> |