in reply to Re^2: Correcting/changing a CPAN module interface
in thread Correcting/changing a CPAN module interface

You can also turn it around and give HTTP::Daemon::SSL a new parameter to enforce bug compatibility. That could happen at load time, as in
use HTTP::Daemon::SSL qw( compat);
but it could be individual with accept( ..., compat => 1. In the (unlikely) case that something relies on accept not to time out, there'd be a way to fix it.

Anno

Replies are listed 'Best First'.
Re^4: Correcting/changing a CPAN module interface
by aufflick (Deacon) on Jul 23, 2007 at 13:45 UTC
    I like it - great thought.