Help for this page

Select Code to Download


  1. or download this
    500 Can't connect to miniwall.foo.com:80 (connect: Invalid argument)
    
  2. or download this
    LWP::UserAgent::request: ()
    LWP::UserAgent::send_request: GET http://miniwall.foo.com/update-4.0/n
    +et4801/etc-files/nrpe.cfg
    ...
    LWP::Protocol::collect: read 4096 bytes
    LWP::Protocol::collect: read 1539 bytes
    LWP::UserAgent::request: Simple response: OK
    
  3. or download this
    LWP::UserAgent::request: ()
    LWP::UserAgent::send_request: GET http://miniwall.foo.com/update-4.0/n
    +et4801/scripts/ping-gw-by-int.pl
    LWP::UserAgent::_need_proxy: Not proxied
    LWP::Protocol::http::request: ()
    LWP::UserAgent::request: Simple response: Internal Server Error
    
  4. or download this
    LWP::UserAgent::request: Simple response: Internal Server Error
    
  5. or download this
            # GOAL : download a copy of the remote file
    
    ...
    
            my $file_content = $ua->request($req)->content;
            # print $file_content;
    
  6. or download this
      my $file_content = $ua->request($req)->content;
    
  7. or download this
    30481 perl CALL connect(0x3,0x85b8bae0,0x10)
    30481 perl RET connect -1 errno 22 Invalid argument
    
  8. or download this
                my $response = $ua->request($req);
                my $file_content = $ua->request($req)->content;
    
  9. or download this
                my $response = $ua->request($req);
                my $file_content = $response->content;