I've got a Perl Module which has a function called
RRDs::graph($args), that will only print to stdout.  In my
handler I write something similar to:

sub handler {
  my $r = shift;

  #  I want the output to go to the client, ($r->print()),
but instead it will only go to STDOUT
  RRDs::graph($args);

  return OK;
}

So I was trying something like:

*STDOUT = \*r{IO};

hoping that:

RRDs::graph would print to the socket instead of stdout.
Is there anyway to access the clients file descriptor?

Thanks in advance....
Todd

--
--------------------------------------------------------------

 <!-- Todd Caine - [EMAIL PROTECTED]
  Electric Lightwave, Inc.
  4400 NE 77th Avenue
  Vancouver, WA 98662
  Direct Dial: (360) 816-4344  //-->

--------------------------------------------------------------



Reply via email to