aboutsummaryrefslogtreecommitdiff
path: root/include/inspsocket.h
Commit message (Expand)AuthorAgeFilesLines
* Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-1/+1
* Require specifying the repeat argument of the Timer class.Gravatar Sadie Powell2022-05-171-1/+1
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-10/+10
* Add the final keyword to all remaining classes that can have it.Gravatar Sadie Powell2021-12-201-3/+6
* Remove unused time_t field from the timer system.•••This is equivalent to calling InspIRCd::Now() and is only actually used in one place in modules. Gravatar Sadie Powell2021-11-051-1/+1
* Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-5/+5
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-141-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-05-141-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-2/+2
|\|
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-2/+2
* | Rip out the SwapInternals method.•••This never really worked correctly and will now be replaced with something better. Gravatar Sadie Powell2021-04-191-5/+0
* | Fix a ton of pedantic compiler warnings.Gravatar Sadie Powell2021-04-041-1/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-0/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-0/+1
* | Refactor classbase/CullResult into Cullable/Cullable::Result.Gravatar Sadie Powell2021-03-021-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-08-251-0/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-07-301-0/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-07-291-0/+5
|\|
| * Fix secure websocket users not being seen as secure.•••Since a TLS (SSL) module will always be the last IOHook attached to a socket, IsSSL() needs to ignore any Middle IOHooks that may also be attached. Gravatar Matt Schatz2020-07-271-0/+5
* | Clean up the StreamSocket documentation comments slightly.Gravatar Sadie Powell2020-07-201-10/+8
* | Move GetNextLine from StreamSocket to TreeSocket.Gravatar Sadie Powell2020-07-201-6/+0
* | Fix the case of getError/getSendQSize and rewrite the doc comments.Gravatar Sadie Powell2020-07-201-4/+6
* | Split OnSetEndPoint into two events.Gravatar Sadie Powell2020-07-201-4/+9
* | Use C++11 inline initialisation for class members.Gravatar Sadie Powell2020-02-061-10/+5
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-3/+7
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-3/+7
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-271-0/+7
|\|
| * Add a method for swapping user I/O handlers.Gravatar Peter Powell2019-07-211-0/+7
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-1/+13
|\|
| * Add an overload of StreamSocket::Close which closes when all data has been wr...•••Fixes sending large pages in m_httpd (#1646).Gravatar linuxdaemon2019-05-221-1/+13
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-5/+3
|\|
| * Fix linking servers with UNIX sockets.•••- Remove the address/port overloads of BeginConnect. - Change DoConnect to take a sockaddrs instead of an address/port. Gravatar Peter Powell2019-04-151-5/+3
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-7/+7
|/
* Redo OnSetEndPoint logic to fix duplicate clones (#1549).Gravatar linuxdaemon2019-01-141-1/+2
* Store the type of a StreamSocket within itself.•••Similar to with IOHooks this allows you to convert StreamSocket to a UserIOHandler quickly. Gravatar Peter Powell2018-10-251-1/+13
* Fix warnings from Doxygen.Gravatar Peter Powell2018-10-211-1/+1
* Add a module which implements the HAProxy PROXY v2 protocol.Gravatar Peter Powell2018-07-261-0/+6
* Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs. Gravatar Peter Powell2017-11-211-3/+3
* Fix a ton of -Wsign-conversion warnings.Gravatar Peter Powell2017-11-171-4/+9
* Fix a bunch of Doxygen warnings.Gravatar Peter Powell2017-08-261-1/+0
* Add CXX11_OVERRIDE to overridden members that lack it.•••This fixes a ton of warnings when building on compilers that default to C++11 or newer. Gravatar Peter Powell2017-07-121-2/+2
* Add StreamSocket::SendQueue::moveall() for moving data between sendqsGravatar Attila Molnar2016-08-081-0/+7
* Add support for multiple IOHooks per StreamSocketGravatar Attila Molnar2016-08-081-2/+11
* Extract code that reads data into a recvq from StreamSocket::DoRead() into Re...Gravatar Attila Molnar2016-08-081-0/+6
* Extract code that flushes the sendq from StreamSocket::DoWrite() into FlushSe...Gravatar Attila Molnar2016-08-081-0/+6
* Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ...•••Use it to simplify logic in all modules using or providing IOHooks Gravatar Attila Molnar2016-08-081-0/+6
* 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-6/+7
* Add class StreamSocket::SendQueueGravatar Attila Molnar2015-06-061-0/+106
* Change StreamSocket::DoRead() and DoWrite() to be non-virtual, make DoRead() ...Gravatar Attila Molnar2015-04-121-4/+8
* Dispatch EventHandler events to dedicated virtual functions•••Remove enum EventType Gravatar Attila Molnar2015-04-121-5/+20