summaryrefslogtreecommitdiff
path: root/lib/openldap.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/openldap.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/openldap.c')
-rw-r--r--lib/openldap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/openldap.c b/lib/openldap.c
index 20d4f51a6..0b8bc34a0 100644
--- a/lib/openldap.c
+++ b/lib/openldap.c
@@ -107,6 +107,7 @@ const struct Curl_handler Curl_handler_ldap = {
oldap_disconnect, /* disconnect */
ZERO_NULL, /* readwrite */
ZERO_NULL, /* connection_check */
+ ZERO_NULL, /* attach connection */
PORT_LDAP, /* defport */
CURLPROTO_LDAP, /* protocol */
CURLPROTO_LDAP, /* family */
@@ -134,6 +135,7 @@ const struct Curl_handler Curl_handler_ldaps = {
oldap_disconnect, /* disconnect */
ZERO_NULL, /* readwrite */
ZERO_NULL, /* connection_check */
+ ZERO_NULL, /* attach connection */
PORT_LDAPS, /* defport */
CURLPROTO_LDAPS, /* protocol */
CURLPROTO_LDAP, /* family */