aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2005-08-18 10:08:20 +0000
committerAris Adamantiadis <aris@0xbadc0de.be>2005-08-18 10:08:20 +0000
commit56602ca031726a7682de3164b8f7f3da4881f7bb (patch)
treec524a0bec36899fda5c0ce90345ec8acab62a15c /include
parentf730d3b361f717135786bddb3c949bfae213bbff (diff)
downloadlibssh-56602ca031726a7682de3164b8f7f3da4881f7bb.tar.gz
libssh-56602ca031726a7682de3164b8f7f3da4881f7bb.tar.xz
libssh-56602ca031726a7682de3164b8f7f3da4881f7bb.zip
More work on the server side and sftp.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@9 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'include')
-rw-r--r--include/libssh/priv.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h
index c080762b..c6a4b48d 100644
--- a/include/libssh/priv.h
+++ b/include/libssh/priv.h
@@ -294,6 +294,7 @@ struct ssh_session {
/* auths accepted by server */
int auth_methods;
int hostkeys; /* contains type of host key wanted by client, in server impl */
+ struct ssh_message *ssh_message; /* ssh message */
};
struct ssh_kbdint {
@@ -465,7 +466,7 @@ u64 ntohll(u64);
#define htonll(x) ntohll(x)
/* channels1.c */
-CHANNEL *channel_open_session1(SSH_SESSION *session);
+int channel_open_session1(CHANNEL *channel);
int channel_request_pty_size1(CHANNEL *channel, char *terminal,int cols,
int rows);
int channel_change_pty_size1(CHANNEL *channel, int cols, int rows);