1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 19:13:14 +02:00

- Added ircd/safe_SSL_read/write from bahamut+inet6/azzuranet. This can be done much nic

when newio is done.
This commit is contained in:
stskeeps
2002-07-23 19:04:18 +00:00
parent 775f3fe272
commit 4e84c85ceb
5 changed files with 59 additions and 4 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ int deliver_it(aClient *cptr, char *str, int len)
#ifdef USE_SSL
if (cptr->flags & FLAGS_SSL)
retval = SSL_write((SSL *)cptr->ssl, str, len);
retval = ircd_SSL_write(cptr, str, len);
else
#endif
retval = send(cptr->fd, str, len, 0);