IM::Http.3pm

Langue: en

Autres versions - même langue

Version: 2010-02-15 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

NAME

IM::Http - HTTP handler

SYNOPSIS

  use IM::Http;
 
  (rc, data) = http_process(spec, http_proxy, no_proxy)
      rc: 
          0: success
          -1: failure
 
 

DESCRIPTION

The IM::Http module handles HTTP.

This modules is provided by IM (Internet Message).

EXAMPLES

  my($rc, $data) = http_process($spec, httpproxy(), noproxy())
  if ($rc < 0) {
      exit 1;
  }
  foreach (@$data) {
      print;
  }
 
 
IM (Internet Message) is copyrighted by IM developing team. You can redistribute it and/or modify it under the modified BSD license. See the copyright file for more details.