david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/tls.h
2007-01-31 03:47:42 +00:00

13 lines
207 B
C

#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 */