#ifndef TLS_TIMEOUTIO_H #define TLS_TIMEOUTIO_H #include extern int tls_timeoutconn(int t, int rfd, int wfd, SSL *tls); extern int tls_timeoutaccept(int t, int rfd, int wfd, SSL *tls); extern int tls_timeoutrehandshake(int t, int rfd, int wfd, SSL *tls); extern int tls_timeoutread(int t, int rfd, int wfd, SSL *tls, char *buf, int len); extern int tls_timeoutwrite(int t, int rfd, int wfd, SSL *tls, char *buf, int len); extern int tls_timeoutio( int (*fun)(SSL *, void *, int), int t, int rfd, int wfd, SSL *tls, char *buf, int len); #endif