summaryrefslogtreecommitdiffstats
path: root/include/libssh/libssh.h
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-09-23 22:19:11 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2009-09-23 22:19:11 +0200
commit496a8e12d988b71089dc59547ed0f3e6c6825292 (patch)
tree01169a374f142e0050fb63d930c31159358b4ab7 /include/libssh/libssh.h
parent0e8e124d2023736c973ce8e06f4776efd1edb096 (diff)
downloadlibssh-496a8e12d988b71089dc59547ed0f3e6c6825292.tar.gz
libssh-496a8e12d988b71089dc59547ed0f3e6c6825292.tar.xz
libssh-496a8e12d988b71089dc59547ed0f3e6c6825292.zip
Get rid of SSH_MESSAGE
Diffstat (limited to 'include/libssh/libssh.h')
-rw-r--r--include/libssh/libssh.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index d87f70c8..d5f8c5c7 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -361,13 +361,13 @@ LIBSSH_API int ssh_get_status(ssh_session session);
LIBSSH_API int ssh_init(void);
LIBSSH_API int ssh_is_server_known(ssh_session session);
LIBSSH_API void ssh_log(ssh_session session, int prioriry, const char *format, ...) PRINTF_ATTRIBUTE(3, 4);
-LIBSSH_API ssh_channel ssh_message_channel_request_open_reply_accept(SSH_MESSAGE *msg);
-LIBSSH_API int ssh_message_channel_request_reply_success(SSH_MESSAGE *msg);
-LIBSSH_API void ssh_message_free(SSH_MESSAGE *msg);
-LIBSSH_API SSH_MESSAGE *ssh_message_get(ssh_session session);
-LIBSSH_API SSH_MESSAGE *ssh_message_retrieve(ssh_session session, uint32_t packettype);
-LIBSSH_API int ssh_message_subtype(SSH_MESSAGE *msg);
-LIBSSH_API int ssh_message_type(SSH_MESSAGE *msg);
+LIBSSH_API ssh_channel ssh_message_channel_request_open_reply_accept(ssh_message msg);
+LIBSSH_API int ssh_message_channel_request_reply_success(ssh_message msg);
+LIBSSH_API void ssh_message_free(ssh_message msg);
+LIBSSH_API ssh_message ssh_message_get(ssh_session session);
+LIBSSH_API ssh_message ssh_message_retrieve(ssh_session session, uint32_t packettype);
+LIBSSH_API int ssh_message_subtype(ssh_message msg);
+LIBSSH_API int ssh_message_type(ssh_message msg);
LIBSSH_API int ssh_mkdir (const char *pathname, mode_t mode);
LIBSSH_API ssh_session ssh_new(void);
LIBSSH_API ssh_options ssh_options_copy(ssh_options opt);