s/qmail 4.3.23
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
6typedef int (*TLS_fun)(SSL *,void *,int);
7
8int tls_timeoutconn(int,int,int,SSL *);
9int tls_timeoutaccept(int,int,int,SSL *);
10int tsl_timeoutrehandshake(int,int,int,SSL *);
11
12int tls_timeoutread(int,int,int,SSL *,char *,int);
13int tls_timeoutwrite(int,int,int,SSL *,char *,int);
14
15int tls_timeoutio(TLS_fun fun,int,int,int,SSL *,char *,int);
16
17#endif
unsigned int
Definition ipalloc.h:19
int tls_timeoutaccept(int, int, int, SSL *)
int tls_timeoutconn(int, int, int, SSL *)
int tls_timeoutwrite(int, int, int, SSL *, char *, int)
int tls_timeoutio(TLS_fun fun, int, int, int, SSL *, char *, int)
int tsl_timeoutrehandshake(int, int, int, SSL *)
int tls_timeoutread(int, int, int, SSL *, char *, int)
int(* TLS_fun)(SSL *, void *, int)