Removed POD file documenting removed API
chansen [Mon, 26 Sep 2011 09:05:55 +0000 (11:05 +0200)]
perl/oldinterface.pod [deleted file]

diff --git a/perl/oldinterface.pod b/perl/oldinterface.pod
deleted file mode 100644 (file)
index bb288a1..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-=head1 NAME
-
-FCGI - Fast CGI module
-
-=head1 SYNOPSIS
-
-    use FCGI;
-
-    $count = 0;
-    while(FCGI::accept() >= 0) {
-       print("Content-type: text/html\r\n\r\n", ++$count);
-    }
-
-=head1 DESCRIPTION
-
-Functions:
-
-=over 4
-
-=item FCGI::accept()
-
-Accepts a connection. Returns 0 on success.
-If a connection has been accepted before, the old
-one will be finished first.
-
-=item FCGI::finish()
-
-Finishes accepted connection.
-
-=item FCGI::flush()
-
-Flushes accepted connection.
-
-=item FCGI::set_exit_status(status)
-
-Sets the exit status that finish returns to the server.
-
-=item FCGI::start_filter_data()
-
-Does anyone use this function ?
-
-=back
-
-=head1 AUTHOR
-
-Sven Verdoolaege <skimo@kotnet.org>
-
-=cut
-
-__END__