File: Apache.pm

package info (click to toggle)
libcgi-pm-perl 4.68-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,028 kB
  • sloc: perl: 6,082; makefile: 9
file content (10 lines) | stat: -rw-r--r-- 143 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
package Apache;

sub request {
	return bless( {},shift );
}

sub bytes_sent { 0 };
sub custom_response { $ENV{MOD_PERL_PRINTED} = $_[2] };

1;