Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-02-10 | system/{Resolver,Socket{Error,Util}}: move to new library libnet.a | Max Kellermann | 1 | -1/+1 | |
2015-01-01 | Copyright year 2015 | Max Kellermann | 1 | -1/+1 | |
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2013-12-19 | util/PeakBuffer: use IsEmpty() instead of IsNull() | Max Kellermann | 1 | -1/+1 | |
The DynamicFifoBuffer methods never return nullptr when the buffer is empty or full; instead, they return an empty buffer. This bug caused an endless loop. | |||||
2013-12-15 | util/PeakBuffer: use DynamicFifoBuffer instead of struct fifo_buffer | Max Kellermann | 1 | -1/+0 | |
Switch to the C++ version. | |||||
2013-12-15 | util/PeakBuffer: return ConstBuffer<void> | Max Kellermann | 1 | -4/+3 | |
2013-11-28 | include cleanup using iwyu | Max Kellermann | 1 | -0/+1 | |
2013-11-06 | event/FullyBufferedSocket: remove obsolete TODO comment | Max Kellermann | 1 | -16/+0 | |
We have a better solution now. | |||||
2013-11-06 | event/FullyBufferedSocket: try to write without extra roundtrip | Max Kellermann | 1 | -14/+24 | |
Postpone the write using IdleMonitor instead of scheduling a write event. This reduces the number of system calls, because we don't need to register and unregister the write event in epoll. | |||||
2013-11-06 | event/FullyBufferedSocket: make WriteFromBuffer() protected | Max Kellermann | 1 | -2/+2 | |
.. and rename it to Flush(). | |||||
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -2/+6 | |
Replaces GLib's GError. | |||||
2013-08-07 | Makefile.am: move sources to libsystem.a | Max Kellermann | 1 | -1/+1 | |
2013-01-30 | event/BufferedSocket: move output buffer to FullyBufferedSocket | Max Kellermann | 1 | -122/+14 | |
BufferedSocket has just an input buffer, and FullyBufferedSocket adds the output buffer. | |||||
2013-01-30 | event/SocketMonitor: OnSocketReady() returns bool | Max Kellermann | 1 | -4/+6 | |
2013-01-30 | event/SocketMonitor: add methods Read(), Write() | Max Kellermann | 1 | -21/+3 | |
2013-01-15 | event/SocketMonitor: wrapper class for GSource + GPollFD | Max Kellermann | 1 | -0/+256 | |