aboutsummaryrefslogtreecommitdiff
path: root/src/messages.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/messages.c')
-rw-r--r--src/messages.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/messages.c b/src/messages.c
index d906e696..ec538771 100644
--- a/src/messages.c
+++ b/src/messages.c
@@ -294,6 +294,21 @@ static int ssh_execute_client_request(ssh_session session, ssh_message msg)
}
return SSH_OK;
+ } else if (msg->type == SSH_REQUEST_CHANNEL_OPEN
+ && msg->channel_request_open.type == SSH_CHANNEL_AUTH_AGENT
+ && ssh_callbacks_exists(session->common.callbacks, channel_open_request_auth_agent_function)) {
+ channel = session->common.callbacks->channel_open_request_auth_agent_function (session,
+ session->common.callbacks->userdata);
+
+ if (channel != NULL) {
+ rc = ssh_message_channel_request_open_reply_accept_channel(msg, channel);
+
+ return rc;
+ } else {
+ ssh_message_reply_default(msg);
+ }
+
+ return SSH_OK;
}
return rc;
@@ -1070,6 +1085,11 @@ SSH_PACKET_CALLBACK(ssh_packet_channel_open){
goto end;
}
+ if (strcmp(type_c,"auth-agent@openssh.com") == 0) {
+ msg->channel_request_open.type = SSH_CHANNEL_AUTH_AGENT;
+ goto end;
+ }
+
msg->channel_request_open.type = SSH_CHANNEL_UNKNOWN;
goto end;