aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Wimmer <g4-lisz@tonarchiv.ch>2019-01-29 10:21:07 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-02-22 11:42:26 +0100
commitfa150ef8d2986c654c8b6a2d3560b073cfdcf0ba (patch)
tree94e8f5e06836d168f845217bcbae429d867409c9
parent810dbd3db11f4c6daab56db7c28f786044d57d84 (diff)
downloadlibssh-fa150ef8d2986c654c8b6a2d3560b073cfdcf0ba.tar.gz
libssh-fa150ef8d2986c654c8b6a2d3560b073cfdcf0ba.tar.xz
libssh-fa150ef8d2986c654c8b6a2d3560b073cfdcf0ba.zip
options: Removed outdated param annotations of ssh_options_set()
Signed-off-by: Till Wimmer <g4-lisz@tonarchiv.ch> Reviewed-by: Andreas Schneider <asn@cryptomilk.org> (cherry picked from commit d27b817acc45e07cf89adfacfbfa274b49371485)
-rw-r--r--src/options.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/options.c b/src/options.c
index 57e2197c..50b79f15 100644
--- a/src/options.c
+++ b/src/options.c
@@ -302,37 +302,6 @@ int ssh_options_set_algo(ssh_session session,
* \n
* See the corresponding numbers in libssh.h.
*
- * - SSH_OPTIONS_AUTH_CALLBACK:
- * Set a callback to use your own authentication function
- * (function pointer).
- *
- * - SSH_OPTIONS_AUTH_USERDATA:
- * Set the user data passed to the authentication
- * function (generic pointer).
- *
- * - SSH_OPTIONS_LOG_CALLBACK:
- * Set a callback to use your own logging function
- * (function pointer).
- *
- * - SSH_OPTIONS_LOG_USERDATA:
- * Set the user data passed to the logging function
- * (generic pointer).
- *
- * - SSH_OPTIONS_STATUS_CALLBACK:
- * Set a callback to show connection status in realtime
- * (function pointer).\n
- * \n
- * @code
- * fn(void *arg, float status)
- * @endcode
- * \n
- * During ssh_connect(), libssh will call the callback
- * with status from 0.0 to 1.0.
- *
- * - SSH_OPTIONS_STATUS_ARG:
- * Set the status argument which should be passed to the
- * status callback (generic pointer).
- *
* - SSH_OPTIONS_CIPHERS_C_S:
* Set the symmetric cipher client to server (const char *,
* comma-separated list).