aboutsummaryrefslogtreecommitdiff
path: root/libssh
diff options
context:
space:
mode:
Diffstat (limited to 'libssh')
-rw-r--r--libssh/agent.c14
-rw-r--r--libssh/auth.c10
-rw-r--r--libssh/channels.c2
-rw-r--r--libssh/kex.c2
-rw-r--r--libssh/keys.c2
-rw-r--r--libssh/messages.c2
-rw-r--r--libssh/sftp.c2
7 files changed, 17 insertions, 17 deletions
diff --git a/libssh/agent.c b/libssh/agent.c
index 3ef41e48..1235dcac 100644
--- a/libssh/agent.c
+++ b/libssh/agent.c
@@ -118,7 +118,7 @@ static size_t atomicio(struct socket *s, void *buf, size_t n, int do_read) {
return pos;
}
-ssh_agent agent_new(struct ssh_session *session) {
+ssh_agent agent_new(struct ssh_session_struct *session) {
ssh_agent agent = NULL;
agent = malloc(sizeof(struct ssh_agent_struct));
@@ -180,7 +180,7 @@ static int agent_connect(SSH_SESSION *session) {
}
#if 0
-static int agent_decode_reply(struct ssh_session *session, int type) {
+static int agent_decode_reply(struct ssh_session_struct *session, int type) {
switch (type) {
case SSH_AGENT_FAILURE:
case SSH2_AGENT_FAILURE:
@@ -199,7 +199,7 @@ static int agent_decode_reply(struct ssh_session *session, int type) {
}
#endif
-static int agent_talk(struct ssh_session *session,
+static int agent_talk(struct ssh_session_struct *session,
struct ssh_buffer_struct *request, struct ssh_buffer_struct *reply) {
u32 len = 0;
u8 payload[1024] = {0};
@@ -262,7 +262,7 @@ static int agent_talk(struct ssh_session *session,
return 0;
}
-int agent_get_ident_count(struct ssh_session *session) {
+int agent_get_ident_count(struct ssh_session_struct *session) {
ssh_buffer request = NULL;
ssh_buffer reply = NULL;
unsigned int type = 0;
@@ -335,7 +335,7 @@ int agent_get_ident_count(struct ssh_session *session) {
}
/* caller has to free commment */
-struct ssh_public_key_struct *agent_get_first_ident(struct ssh_session *session,
+struct ssh_public_key_struct *agent_get_first_ident(struct ssh_session_struct *session,
char **comment) {
if (agent_get_ident_count(session) > 0) {
return agent_get_next_ident(session, comment);
@@ -345,7 +345,7 @@ struct ssh_public_key_struct *agent_get_first_ident(struct ssh_session *session,
}
/* caller has to free commment */
-struct ssh_public_key_struct *agent_get_next_ident(struct ssh_session *session,
+struct ssh_public_key_struct *agent_get_next_ident(struct ssh_session_struct *session,
char **comment) {
struct ssh_public_key_struct *pubkey = NULL;
struct ssh_string_struct *blob = NULL;
@@ -394,7 +394,7 @@ struct ssh_public_key_struct *agent_get_next_ident(struct ssh_session *session,
return pubkey;
}
-ssh_string agent_sign_data(struct ssh_session *session,
+ssh_string agent_sign_data(struct ssh_session_struct *session,
struct ssh_buffer_struct *data,
struct ssh_public_key_struct *pubkey) {
struct ssh_string_struct *blob = NULL;
diff --git a/libssh/auth.c b/libssh/auth.c
index 80d978fb..566afcd4 100644
--- a/libssh/auth.c
+++ b/libssh/auth.c
@@ -995,10 +995,10 @@ int ssh_userauth_autopubkey(SSH_SESSION *session, const char *passphrase) {
return SSH_AUTH_DENIED;
}
-static struct ssh_kbdint *kbdint_new(void) {
- struct ssh_kbdint *kbd;
+static ssh_kbdint kbdint_new(void) {
+ ssh_kbdint kbd;
- kbd = malloc(sizeof (struct ssh_kbdint));
+ kbd = malloc(sizeof (struct ssh_kbdint_struct));
if (kbd == NULL) {
return NULL;
}
@@ -1008,7 +1008,7 @@ static struct ssh_kbdint *kbdint_new(void) {
}
-static void kbdint_free(struct ssh_kbdint *kbd) {
+static void kbdint_free(ssh_kbdint kbd) {
int i, n;
if (kbd == NULL) {
@@ -1039,7 +1039,7 @@ static void kbdint_free(struct ssh_kbdint *kbd) {
SAFE_FREE(kbd);
}
-static void kbdint_clean(struct ssh_kbdint *kbd) {
+static void kbdint_clean(ssh_kbdint kbd) {
int i, n;
if (kbd == NULL) {
diff --git a/libssh/channels.c b/libssh/channels.c
index eb54a074..cfe1808a 100644
--- a/libssh/channels.c
+++ b/libssh/channels.c
@@ -594,7 +594,7 @@ void channel_handle(SSH_SESSION *session, int type){
*/
int channel_default_bufferize(ssh_channel channel, void *data, int len,
int is_stderr) {
- struct ssh_session *session = channel->session;
+ ssh_session session = channel->session;
ssh_log(session, SSH_LOG_RARE,
"placing %d bytes into channel buffer (stderr=%d)", len, is_stderr);
diff --git a/libssh/kex.c b/libssh/kex.c
index 887fc5c5..c4ef6801 100644
--- a/libssh/kex.c
+++ b/libssh/kex.c
@@ -311,7 +311,7 @@ error:
return -1;
}
-void ssh_list_kex(struct ssh_session *session, KEX *kex) {
+void ssh_list_kex(ssh_session session, KEX *kex) {
int i = 0;
#ifdef DEBUG_CRYPTO
diff --git a/libssh/keys.c b/libssh/keys.c
index 453f3a55..402a9538 100644
--- a/libssh/keys.c
+++ b/libssh/keys.c
@@ -1099,7 +1099,7 @@ static ssh_string RSA_do_sign(const unsigned char *payload, int len, RSA *privke
#endif
#ifndef _WIN32
-ssh_string ssh_do_sign_with_agent(struct ssh_session *session,
+ssh_string ssh_do_sign_with_agent(ssh_session session,
struct ssh_buffer_struct *buf, struct ssh_public_key_struct *publickey) {
struct ssh_buffer_struct *sigbuf = NULL;
struct ssh_string_struct *signature = NULL;
diff --git a/libssh/messages.c b/libssh/messages.c
index 5c87aa2a..3f2f1540 100644
--- a/libssh/messages.c
+++ b/libssh/messages.c
@@ -825,7 +825,7 @@ void message_handle(SSH_SESSION *session, u32 type){
* must take care of the response).
*/
void ssh_set_message_callback(SSH_SESSION *session,
- int(*ssh_message_callback)(struct ssh_session *session, struct ssh_message *msg)){
+ int(*ssh_message_callback)(ssh_session session, struct ssh_message *msg)){
session->ssh_message_callback=ssh_message_callback;
}
diff --git a/libssh/sftp.c b/libssh/sftp.c
index 319e96f2..df8bc2c0 100644
--- a/libssh/sftp.c
+++ b/libssh/sftp.c
@@ -109,7 +109,7 @@ SFTP_SESSION *sftp_server_new(SSH_SESSION *session, ssh_channel chan){
}
int sftp_server_init(SFTP_SESSION *sftp){
- struct ssh_session *session = sftp->session;
+ ssh_session session = sftp->session;
SFTP_PACKET *packet = NULL;
ssh_buffer reply = NULL;
u32 version;