選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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