mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-12-09 15:41:10 +03:00
options.c: Use a consistent scheme for datatype in documentation
For the data type of the third argument <value> corresponding to the second argument <option type>, the documentation of ssh_options_set() and ssh_bind_options_set() uses a scheme of (data_type *) in some places whereas (data_type) in other places. Here data_type is the type of the value which is to be set (it can be const char *, int, bool, long, ssh_key etc) This commit removes this inconsistency and uses the (data_type) scheme everywhere. Signed-off-by: Eshan Kelkar <eshankelkar@galorithm.com> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
committed by
Jakub Jelen
parent
b3e40e2bf7
commit
5802017b7f
@@ -314,7 +314,7 @@ int ssh_options_set_algo(ssh_session session,
|
||||
* The hostname or ip address to connect to (const char *).
|
||||
*
|
||||
* - SSH_OPTIONS_PORT:
|
||||
* The port to connect to (unsigned int *).
|
||||
* The port to connect to (unsigned int).
|
||||
*
|
||||
* - SSH_OPTIONS_PORT_STR:
|
||||
* The port to connect to (const char *).
|
||||
@@ -575,7 +575,7 @@ int ssh_options_set_algo(ssh_session session,
|
||||
* configuration option as they are considered completely broken.
|
||||
* Setting 0 will revert the value to defaults.
|
||||
* Default is 1024 bits or 2048 bits in FIPS mode.
|
||||
* (int *)
|
||||
* (int)
|
||||
|
||||
* - SSH_OPTIONS_IDENTITY_AGENT
|
||||
* Set the path to the SSH agent socket. If unset, the
|
||||
@@ -2012,13 +2012,13 @@ static int ssh_bind_set_algo(ssh_bind sshbind,
|
||||
* Set the IP address to bind (const char *).
|
||||
*
|
||||
* - SSH_BIND_OPTIONS_BINDPORT:
|
||||
* Set the port to bind (unsigned int *).
|
||||
* Set the port to bind (unsigned int).
|
||||
*
|
||||
* - SSH_BIND_OPTIONS_BINDPORT_STR:
|
||||
* Set the port to bind (const char *).
|
||||
*
|
||||
* - SSH_BIND_OPTIONS_LOG_VERBOSITY:
|
||||
* Set the session logging verbosity (int *).
|
||||
* Set the session logging verbosity (int).
|
||||
* The logging verbosity should have one of the
|
||||
* following values, which are listed in order
|
||||
* of increasing verbosity. Every log message
|
||||
|
||||
Reference in New Issue
Block a user