summaryrefslogtreecommitdiffstats
path: root/src/net/tcp/https.c
diff options
context:
space:
mode:
authorMichael Brown2020-12-15 17:11:34 +0100
committerMichael Brown2020-12-15 17:54:06 +0100
commitf43a8f8b9f808fb0a8347663abf6efe6908821ed (patch)
tree012d6ffcb49d4c4744e12b8a8cbc207f13d3bf65 /src/net/tcp/https.c
parent[tls] Include root of trust within definition of TLS session (diff)
downloadipxe-f43a8f8b9f808fb0a8347663abf6efe6908821ed.tar.gz
ipxe-f43a8f8b9f808fb0a8347663abf6efe6908821ed.tar.xz
ipxe-f43a8f8b9f808fb0a8347663abf6efe6908821ed.zip
[crypto] Allow private key to be specified as a TLS connection parameter
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net/tcp/https.c')
-rw-r--r--src/net/tcp/https.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tcp/https.c b/src/net/tcp/https.c
index eae8ae5dc..85f1f124f 100644
--- a/src/net/tcp/https.c
+++ b/src/net/tcp/https.c
@@ -46,7 +46,7 @@ FEATURE ( FEATURE_PROTOCOL, "HTTPS", DHCP_EB_FEATURE_HTTPS, 1 );
*/
static int https_filter ( struct http_connection *conn ) {
- return add_tls ( &conn->socket, conn->uri->host, NULL );
+ return add_tls ( &conn->socket, conn->uri->host, NULL, NULL );
}
/** HTTPS URI opener */