]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/TLS.pm
update copyrights for 2021
[public-inbox.git] / lib / PublicInbox / TLS.pm
index 0b9a55dfd237c22bfd1aa24c3b9bdeef9cd447ff..3fe16a62943fcf3c88d9dbb4d39c8233ab28574d 100644 (file)
@@ -1,13 +1,12 @@
-# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2019-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
 # IO::Socket::SSL support code
 package PublicInbox::TLS;
 use strict;
 use IO::Socket::SSL;
-require Carp;
-use Errno qw(EAGAIN);
 use PublicInbox::Syscall qw(EPOLLIN EPOLLOUT);
+use Carp qw(carp);
 
 sub err () { $SSL_ERROR }
 
@@ -15,7 +14,8 @@ sub err () { $SSL_ERROR }
 sub epollbit () {
        return EPOLLIN if $SSL_ERROR == SSL_WANT_READ;
        return EPOLLOUT if $SSL_ERROR == SSL_WANT_WRITE;
-       die "unexpected SSL error: $SSL_ERROR";
+       carp "unexpected SSL error: $SSL_ERROR";
+       undef;
 }
 
 1;