public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob d27efba1f0eadd1855daf33d352dabd6e267843b 1213 bytes (raw)
$ git show HEAD:lib/PublicInbox/NetNNTPSocks.pm	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
# Copyright (C) all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>

# wrap Net::NNTP client with SOCKS support.  Convoluted, but AFAIK this
# is the only way to get SOCKS working with Net::NNTP w/o LD_PRELOAD.
package PublicInbox::NetNNTPSocks;
use v5.12;
use Net::NNTP;
our %OPT; # used to pass options between ->new_socks and our ->new
our @ISA = qw(IO::Socket::Socks);

# use this instead of Net::NNTP->new if using Proxy*
sub new_socks {
	my (undef, %opt) = @_;
	require IO::Socket::Socks;
	local @Net::NNTP::ISA = (qw(Net::Cmd), __PACKAGE__);
	local %OPT = map {;
		defined($opt{$_}) ? ($_ => $opt{$_}) : ()
	} qw(ProxyAddr ProxyPort SocksVersion SocksDebug SocksResolve);
	no warnings 'uninitialized'; # needed for $SOCKS_ERROR
	my $ret = Net::NNTP->new(%opt); # calls PublicInbox::NetNNTPSocks::new
	return $ret if $ret || $!{EINTR};
	$ret // die "errors: \$!=$! SOCKS=",
				eval('$IO::Socket::Socks::SOCKS_ERROR // ""'),
				', SSL=',
				(eval('IO::Socket::SSL->errstr')  // ''), "\n";
}

# called by Net::NNTP->new
sub new {
	my ($self, %opt) = @_;
	@OPT{qw(ConnectAddr ConnectPort)} = @opt{qw(PeerAddr PeerPort)};
	$self->SUPER::new(%OPT);
}

1;

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git