Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
345 additions
and 66 deletions.
- +2 −3 .RELEASE.NOTES
- +29 −30 Config
- +5 −0 Makefile.dist
- +4 −0 TODO
- +1 −1 include/config.h
- +10 −0 include/ssl.h
- +29 −5 include/struct.h
- +3 −1 include/sys.h
- +1 −1 networks/unrealircd.conf
- +6 −2 src/Makefile
- +8 −0 src/bsd.c
- +8 −1 src/channel.c
- +3 −1 src/ircd.c
- +30 −2 src/s_bsd.c
- +1 −1 src/s_conf.c
- +3 −2 src/s_unreal.c
- +13 −12 src/s_user.c
- +1 −1 src/send.c
- +150 −0 src/ssl.c
- +35 −0 src/ssl.cnf
- BIN src/ssl.rnd
- +3 −3 src/webtv.c
@@ -0,0 +1,10 @@ | ||
/* 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.*/ |
Oops, something went wrong.