1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-26 14:56:38 +02:00
Files
unrealircd/include/ssl.h
T
2000-10-07 06:33:42 +00:00

11 lines
334 B
C

/* Make these what you want for cert & key files */
#define CERTF "server.pem"
#define KEYF "server.pem"
extern SSL_CTX * ctx;
extern SSL_METHOD *meth;
extern void init_ssl();
extern int ssl_handshake(aClient *); /* Handshake the accpeted con.*/
extern int ssl_client_handshake(aClient *); /* and the initiated con.*/