summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/tls.h
diff options
context:
space:
mode:
authorMichael Brown2007-01-31 04:47:42 +0100
committerMichael Brown2007-01-31 04:47:42 +0100
commita3695b1ff635939424808eec8f83d56754480a96 (patch)
treeca2bc99c22f65f025dc904e7f168b44302cac8a7 /src/include/gpxe/tls.h
parentAdd HTTPS port (diff)
downloadipxe-a3695b1ff635939424808eec8f83d56754480a96.tar.gz
ipxe-a3695b1ff635939424808eec8f83d56754480a96.tar.xz
ipxe-a3695b1ff635939424808eec8f83d56754480a96.zip
Placeholder for TLS insertion
Diffstat (limited to 'src/include/gpxe/tls.h')
-rw-r--r--src/include/gpxe/tls.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/gpxe/tls.h b/src/include/gpxe/tls.h
new file mode 100644
index 00000000..19ab9801
--- /dev/null
+++ b/src/include/gpxe/tls.h
@@ -0,0 +1,12 @@
+#ifndef _GPXE_TLS_H
+#define _GPXE_TLS_H
+
+#include <errno.h>
+
+struct stream_application;
+
+static inline int add_tls ( struct stream_application *app __unused ) {
+ return -ENOTSUP;
+}
+
+#endif /* _GPXE_TLS_H */