summaryrefslogtreecommitdiff
path: root/lib/smtp.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/smtp.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/smtp.c')
-rw-r--r--lib/smtp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/smtp.c b/lib/smtp.c
index d6f9b17c5..feffc05bc 100644
--- a/lib/smtp.c
+++ b/lib/smtp.c
@@ -136,6 +136,7 @@ const struct Curl_handler Curl_handler_smtp = {
smtp_disconnect, /* disconnect */
ZERO_NULL, /* readwrite */
ZERO_NULL, /* connection_check */
+ ZERO_NULL, /* attach connection */
PORT_SMTP, /* defport */
CURLPROTO_SMTP, /* protocol */
CURLPROTO_SMTP, /* family */
@@ -164,6 +165,7 @@ const struct Curl_handler Curl_handler_smtps = {
smtp_disconnect, /* disconnect */
ZERO_NULL, /* readwrite */
ZERO_NULL, /* connection_check */
+ ZERO_NULL, /* attach connection */
PORT_SMTPS, /* defport */
CURLPROTO_SMTPS, /* protocol */
CURLPROTO_SMTP, /* family */