Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Reverse download protocols

by Perlbotics (Archbishop)
on Aug 31, 2021 at 18:06 UTC ( [id://11136309]=note: print w/replies, xml ) Need Help??


in reply to Reverse download protocols [solved]

Just something to complete this insanity:

sub steal_a_file_from_our_isp_that_charges_for_downstream_net_bytes_on +ly { my ($some_kind_of_uri) = @_; my @buffer; my $location = 0; while ( 'true' ) { my $done = 0; for my $val (0..255) { #-- 0..255: use a list with values sorted by highest probability # first for an incredible speed boost my $resp = query_server_if_byte_at_location_has_value($some_kin +d_of_uri, $location++, $val); next if $resp eq 'timeout'; return @buffer if $resp eq 'eof'; push @buffer, $val; $done=1; last; } $location-- unless $done; # 256 timeouts, so the response was lost + and we need to retry } }

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11136309]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (2)
As of 2024-04-25 20:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found