1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

messages: Make returned strings const.

This commit is contained in:
Andreas Schneider
2011-03-09 19:45:17 +01:00
parent 7420b0fb83
commit 7e921b7afb
2 changed files with 22 additions and 22 deletions

View File

@@ -268,7 +268,7 @@ LIBSSH_API int ssh_message_reply_default(ssh_message msg);
* @see ssh_message_get() * @see ssh_message_get()
* @see ssh_message_type() * @see ssh_message_type()
*/ */
LIBSSH_API char *ssh_message_auth_user(ssh_message msg); LIBSSH_API const char *ssh_message_auth_user(ssh_message msg);
/** /**
* @brief Get the password of the authenticated user. * @brief Get the password of the authenticated user.
@@ -280,7 +280,7 @@ LIBSSH_API char *ssh_message_auth_user(ssh_message msg);
* @see ssh_message_get() * @see ssh_message_get()
* @see ssh_message_type() * @see ssh_message_type()
*/ */
LIBSSH_API char *ssh_message_auth_password(ssh_message msg); LIBSSH_API const char *ssh_message_auth_password(ssh_message msg);
LIBSSH_API ssh_public_key ssh_message_auth_publickey(ssh_message msg); LIBSSH_API ssh_public_key ssh_message_auth_publickey(ssh_message msg);
LIBSSH_API int ssh_message_auth_kbdint_is_response(ssh_message msg); LIBSSH_API int ssh_message_auth_kbdint_is_response(ssh_message msg);
LIBSSH_API enum ssh_publickey_state_e ssh_message_auth_publickey_state(ssh_message msg); LIBSSH_API enum ssh_publickey_state_e ssh_message_auth_publickey_state(ssh_message msg);
@@ -295,7 +295,7 @@ LIBSSH_API int ssh_message_auth_interactive_request(ssh_message msg,
unsigned int num_prompts, const char **prompts, char *echo); unsigned int num_prompts, const char **prompts, char *echo);
LIBSSH_API int ssh_message_service_reply_success(ssh_message msg); LIBSSH_API int ssh_message_service_reply_success(ssh_message msg);
LIBSSH_API char *ssh_message_service_service(ssh_message msg); LIBSSH_API const char *ssh_message_service_service(ssh_message msg);
LIBSSH_API int ssh_message_global_request_reply_success(ssh_message msg, LIBSSH_API int ssh_message_global_request_reply_success(ssh_message msg,
uint16_t bound_port); uint16_t bound_port);
@@ -305,27 +305,27 @@ LIBSSH_API void ssh_set_message_callback(ssh_session session,
void *data); void *data);
LIBSSH_API int ssh_execute_message_callbacks(ssh_session session); LIBSSH_API int ssh_execute_message_callbacks(ssh_session session);
LIBSSH_API char *ssh_message_channel_request_open_originator(ssh_message msg); LIBSSH_API const char *ssh_message_channel_request_open_originator(ssh_message msg);
LIBSSH_API int ssh_message_channel_request_open_originator_port(ssh_message msg); LIBSSH_API int ssh_message_channel_request_open_originator_port(ssh_message msg);
LIBSSH_API char *ssh_message_channel_request_open_destination(ssh_message msg); LIBSSH_API const char *ssh_message_channel_request_open_destination(ssh_message msg);
LIBSSH_API int ssh_message_channel_request_open_destination_port(ssh_message msg); LIBSSH_API int ssh_message_channel_request_open_destination_port(ssh_message msg);
LIBSSH_API ssh_channel ssh_message_channel_request_channel(ssh_message msg); LIBSSH_API ssh_channel ssh_message_channel_request_channel(ssh_message msg);
LIBSSH_API char *ssh_message_channel_request_pty_term(ssh_message msg); LIBSSH_API const char *ssh_message_channel_request_pty_term(ssh_message msg);
LIBSSH_API int ssh_message_channel_request_pty_width(ssh_message msg); LIBSSH_API int ssh_message_channel_request_pty_width(ssh_message msg);
LIBSSH_API int ssh_message_channel_request_pty_height(ssh_message msg); LIBSSH_API int ssh_message_channel_request_pty_height(ssh_message msg);
LIBSSH_API int ssh_message_channel_request_pty_pxwidth(ssh_message msg); LIBSSH_API int ssh_message_channel_request_pty_pxwidth(ssh_message msg);
LIBSSH_API int ssh_message_channel_request_pty_pxheight(ssh_message msg); LIBSSH_API int ssh_message_channel_request_pty_pxheight(ssh_message msg);
LIBSSH_API char *ssh_message_channel_request_env_name(ssh_message msg); LIBSSH_API const char *ssh_message_channel_request_env_name(ssh_message msg);
LIBSSH_API char *ssh_message_channel_request_env_value(ssh_message msg); LIBSSH_API const char *ssh_message_channel_request_env_value(ssh_message msg);
LIBSSH_API char *ssh_message_channel_request_command(ssh_message msg); LIBSSH_API const char *ssh_message_channel_request_command(ssh_message msg);
LIBSSH_API char *ssh_message_channel_request_subsystem(ssh_message msg); LIBSSH_API const char *ssh_message_channel_request_subsystem(ssh_message msg);
LIBSSH_API char *ssh_message_global_request_address(ssh_message msg); LIBSSH_API const char *ssh_message_global_request_address(ssh_message msg);
LIBSSH_API int ssh_message_global_request_port(ssh_message msg); LIBSSH_API int ssh_message_global_request_port(ssh_message msg);
LIBSSH_API int ssh_channel_open_reverse_forward(ssh_channel channel, const char *remotehost, LIBSSH_API int ssh_channel_open_reverse_forward(ssh_channel channel, const char *remotehost,

View File

@@ -708,14 +708,14 @@ int ssh_message_reply_default(ssh_message msg) {
return -1; return -1;
} }
char *ssh_message_service_service(ssh_message msg){ const char *ssh_message_service_service(ssh_message msg){
if (msg == NULL) { if (msg == NULL) {
return NULL; return NULL;
} }
return msg->service_request.service; return msg->service_request.service;
} }
char *ssh_message_auth_user(ssh_message msg) { const char *ssh_message_auth_user(ssh_message msg) {
if (msg == NULL) { if (msg == NULL) {
return NULL; return NULL;
} }
@@ -723,7 +723,7 @@ char *ssh_message_auth_user(ssh_message msg) {
return msg->auth_request.username; return msg->auth_request.username;
} }
char *ssh_message_auth_password(ssh_message msg){ const char *ssh_message_auth_password(ssh_message msg){
if (msg == NULL) { if (msg == NULL) {
return NULL; return NULL;
} }
@@ -945,7 +945,7 @@ int ssh_message_auth_reply_pk_ok_simple(ssh_message msg) {
} }
char *ssh_message_channel_request_open_originator(ssh_message msg){ const char *ssh_message_channel_request_open_originator(ssh_message msg){
return msg->channel_request_open.originator; return msg->channel_request_open.originator;
} }
@@ -953,7 +953,7 @@ int ssh_message_channel_request_open_originator_port(ssh_message msg){
return msg->channel_request_open.originator_port; return msg->channel_request_open.originator_port;
} }
char *ssh_message_channel_request_open_destination(ssh_message msg){ const char *ssh_message_channel_request_open_destination(ssh_message msg){
return msg->channel_request_open.destination; return msg->channel_request_open.destination;
} }
@@ -965,7 +965,7 @@ ssh_channel ssh_message_channel_request_channel(ssh_message msg){
return msg->channel_request.channel; return msg->channel_request.channel;
} }
char *ssh_message_channel_request_pty_term(ssh_message msg){ const char *ssh_message_channel_request_pty_term(ssh_message msg){
return msg->channel_request.TERM; return msg->channel_request.TERM;
} }
@@ -985,23 +985,23 @@ int ssh_message_channel_request_pty_pxheight(ssh_message msg){
return msg->channel_request.pxheight; return msg->channel_request.pxheight;
} }
char *ssh_message_channel_request_env_name(ssh_message msg){ const char *ssh_message_channel_request_env_name(ssh_message msg){
return msg->channel_request.var_name; return msg->channel_request.var_name;
} }
char *ssh_message_channel_request_env_value(ssh_message msg){ const char *ssh_message_channel_request_env_value(ssh_message msg){
return msg->channel_request.var_value; return msg->channel_request.var_value;
} }
char *ssh_message_channel_request_command(ssh_message msg){ const char *ssh_message_channel_request_command(ssh_message msg){
return msg->channel_request.command; return msg->channel_request.command;
} }
char *ssh_message_channel_request_subsystem(ssh_message msg){ const char *ssh_message_channel_request_subsystem(ssh_message msg){
return msg->channel_request.subsystem; return msg->channel_request.subsystem;
} }
char *ssh_message_global_request_address(ssh_message msg){ const char *ssh_message_global_request_address(ssh_message msg){
return msg->global_request.bind_address; return msg->global_request.bind_address;
} }