-- Alin Simionoiu <[EMAIL PROTECTED]>

> Hi there,
>
> Those anybody know if is possible to clone the apache request object?.
> I'm trying to write a Apache module that do some basic validation against
> the request parameters.
> But as soon as a touching the request is gone.
> any other posibilities?

I've never had problems with:

sub handler
{
        my $request = shift;

        foo $request or croak "foo doesn't like you!";
        ...
}

sub foo
{
        my $request = shift;
        ...
}

--
Steven Lembark                                               2930 W. Palmer
Workhorse Computing                                       Chicago, IL 60647
                                                            +1 800 762 1582

Reply via email to