Help for this page

Select Code to Download


  1. or download this
    PerlModule Apache::Filter \
      OurStuff::SessionFilter
    ...
      PerlHandler OurStuff::SessionFilter
      SetHandler perl-script
    </Directory>
    
  2. or download this
    package OurStuff::SessionFilter;
    use Apache::Constants();
    ...
        return OK;
    }
    1;