summaryrefslogtreecommitdiff
path: root/lib/multi.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-05-17 08:54:00 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-05-17 17:57:50 +0200
commit0c55fbab45bedb761766109d41c3da49c4bc66c6 (patch)
tree536c9f6854ca50e64ede0ab86b9ae3c44338fbbb /lib/multi.c
parent904b27d18da1f7310f38b5117a0916d8b96d130c (diff)
downloadcurl-0c55fbab45bedb761766109d41c3da49c4bc66c6.tar.gz
conn: add 'attach' to protocol handler, make libssh2 use it
The libssh2 backend has SSH session associated with the connection but the callback context is the easy handle, so when a connection gets attached to a transfer, the protocol handler now allows for a custom function to get used to set things up correctly. Reported-by: Michael O'Farrell Fixes #6898 Closes #7078
Diffstat (limited to 'lib/multi.c')
-rw-r--r--lib/multi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/multi.c b/lib/multi.c
index f7b1da9ab..54365f399 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -896,6 +896,8 @@ void Curl_attach_connnection(struct Curl_easy *data,
data->conn = conn;
Curl_llist_insert_next(&conn->easyq, conn->easyq.tail, data,
&data->conn_queue);
+ if(conn->handler->attach)
+ conn->handler->attach(data, conn);
}
static int waitconnect_getsock(struct connectdata *conn,