From: Eric Wong Date: Mon, 10 Jun 2019 02:18:44 +0000 (+0000) Subject: ds: remove steal_socket method X-Git-Tag: v1.2.0~169^2~4 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=180fe300da41ab0251147055bbb9ae5d9ebd2b5b;p=public-inbox.git ds: remove steal_socket method We won't be needing it, not even for TLS support. --- diff --git a/lib/PublicInbox/DS.pm b/lib/PublicInbox/DS.pm index 7d7baac7..5177d1f1 100644 --- a/lib/PublicInbox/DS.pm +++ b/lib/PublicInbox/DS.pm @@ -487,26 +487,6 @@ retry: ### I N S T A N C E M E T H O D S ##################################################################### -=head2 C<< $obj->steal_socket() >> - -Basically returns our socket and makes it so that we don't try to close it, -but we do remove it from epoll handlers. THIS CLOSES $self. It is the same -thing as calling close, except it gives you the socket to use. - -=cut -sub steal_socket { - my PublicInbox::DS $self = $_[0]; - return if $self->{closed}; - - # cleanup does most of the work of closing this socket - $self->_cleanup(); - - # now undef our internal sock and fd structures so we don't use them - my $sock = $self->{sock}; - $self->{sock} = undef; - return $sock; -} - =head2 C<< $obj->close >> Close the socket.