Help for this page

Select Code to Download


  1. or download this
    # Lets define the data structure for the proxy array
    # ip/host, port, type, country, anon level, use
    push @data, ["127.0.0.1", "8080", "http", "USA", "Anonymous", "0"];
    
  2. or download this
    push @data, {
      host => '127.0.0.1',
      port => 8080,
      ... };
    
  3. or download this
    our %info = ( version => "0.3",
        format => 0,
        anonymouns => 1,
        ...