aboutsummaryrefslogtreecommitdiff
path: root/include/iohook.h
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2020-01-111-1/+2
* Various text improvements: consistency, syntax, help and doc updates/fixes.Gravatar Robby2019-02-181-1/+1
* Unite SSL service providers and SSL profile classesGravatar Attila Molnar2017-11-131-2/+2
* Update comments for classes IOHookProvider and IOHookGravatar Attila Molnar2016-08-081-16/+22
* Add support for multiple IOHooks per StreamSocketGravatar Attila Molnar2016-08-081-2/+74
* Pass sendq to OnStreamSocketWriteGravatar Attila Molnar2016-08-081-1/+2
* Convert all code to use StreamSocket::SendQueue•••Let OnStreamSocketWrite see the entire sendq instead of one element at a time Gravatar Attila Molnar2015-06-061-2/+1
* Split IOHook into IOHook and IOHookProvider•••Create one IOHook instance for each hooked socket which contains all the hook specific data and read/write/close functions, removing the need for the "issl_session" array in SSL modules. Register instances of the IOHookProvider class in the core and use them to create specialized IOHook instances (OnConnect/OnAccept). Remove the OnHookIO hook, add a dynamic reference to ListenSocket that points to the hook provider (if any) to use for incoming connections on that socket. For outgoing connections modules still have to find the IOHookProvider they want to use themselves but instead of calling AddIOHook(hookprov), now they have to call IOHookProvider::OnConnect() after the connection has been established. Gravatar Attila Molnar2014-01-221-12/+22
* Create SSLIOHook interface that provides GetCertificate()Gravatar attilamolnar2013-06-071-2/+10
* Create IOHook interface (extracted from Module)Gravatar attilamolnar2013-06-071-0/+71