home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / auto / LWP / UserAgent / no_proxy.al < prev    next >
Text File  |  1997-12-13  |  251b  |  15 lines

  1. # NOTE: Derived from :lib:LWP:UserAgent.pm.  Changes made here will be lost.
  2. package LWP::UserAgent;
  3.  
  4. sub no_proxy {
  5.     my($self, @no) = @_;
  6.     if (@no) {
  7.     push(@{ $self->{'no_proxy'} }, @no);
  8.     }
  9.     else {
  10.     $self->{'no_proxy'} = [];
  11.     }
  12. }
  13.  
  14. 1;
  15.