summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-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 000000000..19ab9801e
--- /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 */