home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl_ste.zip / auto / LWP / UserAgent / no_proxy.al < prev    next >
Text File  |  1997-11-28  |  271b  |  15 lines

  1. # NOTE: Derived from ./blib/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.