diff options
| author | Michael Brown | 2007-01-31 04:47:42 +0100 |
|---|---|---|
| committer | Michael Brown | 2007-01-31 04:47:42 +0100 |
| commit | a3695b1ff635939424808eec8f83d56754480a96 (patch) | |
| tree | ca2bc99c22f65f025dc904e7f168b44302cac8a7 /src/include/gpxe | |
| parent | Add HTTPS port (diff) | |
| download | ipxe-a3695b1ff635939424808eec8f83d56754480a96.tar.gz ipxe-a3695b1ff635939424808eec8f83d56754480a96.tar.xz ipxe-a3695b1ff635939424808eec8f83d56754480a96.zip | |
Placeholder for TLS insertion
Diffstat (limited to 'src/include/gpxe')
| -rw-r--r-- | src/include/gpxe/tls.h | 12 |
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 */ |
