X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FListener.pm;h=c831581076a0d582dfcd44ba0ca8c65b010dd797;hb=af0b0fb7a454470a32c452119d0392e0dedb3fe1;hp=cdfd34a275bc532c4bc71dd3c14485751351d899;hpb=cb4f09264abe20c820939814e87442fe812713bc;p=public-inbox.git diff --git a/lib/PublicInbox/Listener.pm b/lib/PublicInbox/Listener.pm index cdfd34a2..c8315810 100644 --- a/lib/PublicInbox/Listener.pm +++ b/lib/PublicInbox/Listener.pm @@ -1,13 +1,11 @@ -# Copyright (C) 2015-2019 all contributors +# Copyright (C) 2015-2021 all contributors # License: AGPL-3.0+ # # Used by -nntpd for listen sockets package PublicInbox::Listener; use strict; -use warnings; -use base 'PublicInbox::DS'; +use parent 'PublicInbox::DS'; use Socket qw(SOL_SOCKET SO_KEEPALIVE IPPROTO_TCP TCP_NODELAY); -use fields qw(post_accept); use IO::Handle; use PublicInbox::Syscall qw(EPOLLIN EPOLLEXCLUSIVE EPOLLET); use Errno qw(EAGAIN ECONNABORTED EPERM); @@ -23,10 +21,8 @@ sub new ($$$) { setsockopt($s, SOL_SOCKET, SO_KEEPALIVE, 1); setsockopt($s, IPPROTO_TCP, TCP_NODELAY, 1); # ignore errors on non-TCP listen($s, 1024); - my $self = fields::new($class); + my $self = bless { post_accept => $cb }, $class; $self->SUPER::new($s, EPOLLIN|EPOLLET|EPOLLEXCLUSIVE); - $self->{post_accept} = $cb; - $self } sub event_step {