about summary refs log tree commit homepage
path: root/lib/PublicInbox/DS.pm
DateCommit message (Expand)
2019-09-26ds: workaround a memory leak in Perl 5.16.x
2019-09-14tmpfile: support O_APPEND and use it in DS::tmpio
2019-07-08Merge remote-tracking branch 'origin/nntp-compress'
2019-07-08ds: use WNOHANG with waitpid if inside event loop
2019-07-06nntp: reduce memory overhead of zlib
2019-06-30ds: fix return values of do_read and *_tls_step
2019-06-30ds: rely on refcounting to close descriptors
2019-06-29httpd/async: switch to buffering-as-fast-as-possible
2019-06-29ds: consolidate IO::Socket::SSL checks
2019-06-29ds: handle deferred DS->close after timers
2019-06-29http: use requeue instead of watch_in1
2019-06-29ds: move requeue logic over from NNTP
2019-06-29ds: share lazy rbuf handling between HTTP and NNTP
2019-06-26ds: cleanup poll test and avoid clobbering imports
2019-06-24ds: ->write must not clobber empty wbuf array
2019-06-24ds: reduce overhead of tempfile creation
2019-06-24ds: reimplement IO::Poll support to look like epoll
2019-06-24ds: split out IO::KQueue-specific code
2019-06-24ds: flush_write runs ->write callbacks even if closed
2019-06-24ds: always use EV_ADD with EV_SET
2019-06-24ds: allow ->write callbacks to syswrite directly
2019-06-24nntp: call SSL_shutdown in normal cases
2019-06-24ds|nntp: use CORE::close on socket
2019-06-24nntp: NNTPS and NNTP+STARTTLS working
2019-06-24ds: deal better with FS-related errors IO buffers
2019-06-24allow use of PerlIO layers for filesystem writes
2019-06-24ds: hoist out do_read from NNTP and HTTP
2019-06-24ds: remove pointless exit calls
2019-06-24ds: pass $self to code references
2019-06-24ds: favor `delete' over assigning fields to `undef'
2019-06-24ds: get rid of event_watch field
2019-06-24ds: remove IO::Poll support (for now)
2019-06-24ds: share watch_chg between watch_read/watch_write
2019-06-24ds: import IO::KQueue namespace
2019-06-24ds: set event flags directly at initialization
2019-06-24ds: get rid of redundant and unnecessary POLL* constants
2019-06-24ds: switch write buffering to use a tempfile
2019-06-24ds: share send(..., MSG_MORE) logic
2019-06-24ds: remove support for DS->write(undef)
2019-06-24ds: don't pass `events' arg to EPOLL_CTL_DEL
2019-06-24ds: lazy-initialize wbuf
2019-06-24ds: split out from ->flush_write and ->write
2019-06-24ds: lazy initialize wbuf_off
2019-06-24ds: get rid of on_incomplete_write wrapper
2019-06-24AddTimer: avoid clock_gettime for the '0' case
2019-06-24ds: use and export monotonic now()
2019-06-24ds: get rid of more unused debug instance methods
2019-06-24ds: get rid of {closed} field
2019-06-16ds: stop distinguishing event read and write callbacks
2019-06-10ds: stop caring about event flags set by epoll/poll/kqueue