You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tls.h 207B

123456789101112
  1. #ifndef _GPXE_TLS_H
  2. #define _GPXE_TLS_H
  3. #include <errno.h>
  4. struct stream_application;
  5. static inline int add_tls ( struct stream_application *app __unused ) {
  6. return -ENOTSUP;
  7. }
  8. #endif /* _GPXE_TLS_H */