s/qmail 4.2.29a
Next generation secure email transport
Loading...
Searching...
No Matches
tls_timeoutio.h
Go to the documentation of this file.
1#ifndef TLS_TIMEOUTIO_H
2#define TLS_TIMEOUTIO_H
3
4#include <openssl/ssl.h>
5
6int tls_timeoutconn(int t, int rfd, int wfd, SSL *tls);
7int tls_timeoutaccept(int t, int rfd, int wfd, SSL *tls);
8int tsl_timeoutrehandshake(int t, int rfd, int wfd, SSL *tls);
9
10int tls_timeoutread(int t, int rfd, int wfd, SSL *tls, char *buf, int len);
11int tls_timeoutwrite(int t, int rfd, int wfd, SSL *tls, char *buf, int len);
12
13int tls_timeoutio(int (*fun)(), int t, int rfd, int wfd, SSL *tls, char *buf, int len);
14
15#endif
char buf[100+FMT_ULONG]
Definition: hier.c:10
int tls_timeoutwrite(int t, int rfd, int wfd, SSL *tls, char *buf, int len)
Definition: tls_timeoutio.c:95
int tls_timeoutio(int(*fun)(), int t, int rfd, int wfd, SSL *tls, char *buf, int len)
Definition: tls_timeoutio.c:10
int tls_timeoutread(int t, int rfd, int wfd, SSL *tls, char *buf, int len)
Definition: tls_timeoutio.c:88
int tsl_timeoutrehandshake(int t, int rfd, int wfd, SSL *tls)
int tls_timeoutaccept(int t, int rfd, int wfd, SSL *tls)
Definition: tls_timeoutio.c:45
int tls_timeoutconn(int t, int rfd, int wfd, SSL *tls)
Definition: tls_timeoutio.c:59