summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/c-modules/eat_post/mod_eat_post.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:01:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:01:31 +0000
commitc9cf025fadfe043f0f2f679e10d1207d8a158bb6 (patch)
tree3a94effe0bdc0a6814d8134f4ed840d7cc6b6f19 /debian/perl-framework/c-modules/eat_post/mod_eat_post.c
parentAdding upstream version 2.4.57. (diff)
downloadapache2-c9cf025fadfe043f0f2f679e10d1207d8a158bb6.tar.xz
apache2-c9cf025fadfe043f0f2f679e10d1207d8a158bb6.zip
Adding debian version 2.4.57-2.debian/2.4.57-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/perl-framework/c-modules/eat_post/mod_eat_post.c')
-rw-r--r--debian/perl-framework/c-modules/eat_post/mod_eat_post.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/debian/perl-framework/c-modules/eat_post/mod_eat_post.c b/debian/perl-framework/c-modules/eat_post/mod_eat_post.c
new file mode 100644
index 0000000..560ba19
--- /dev/null
+++ b/debian/perl-framework/c-modules/eat_post/mod_eat_post.c
@@ -0,0 +1,61 @@
+#if CONFIG_FOR_HTTPD_TEST
+
+<Location /eat_post>
+ SetHandler eat_post
+</Location>
+
+#endif
+
+#define APACHE_HTTPD_TEST_HANDLER eat_post_handler
+
+#include "apache_httpd_test.h"
+
+/* like mod_echo_post.c but does not echo back the data,
+ * just sends back the number of bytes read
+ */
+static int eat_post_handler(request_rec *r)
+{
+ int rc;
+ long nrd, total = 0;
+#ifdef APACHE1
+ char buff[IOBUFSIZE];
+#else
+ char buff[AP_IOBUFSIZE];
+#endif
+
+ if (strcmp(r->handler, "eat_post")) {
+ return DECLINED;
+ }
+ if ((r->method_number != M_POST) && (r->method_number != M_PUT)) {
+ return DECLINED;
+ }
+
+ if ((rc = ap_setup_client_block(r, REQUEST_CHUNKED_ERROR)) != OK) {
+#ifdef APACHE1
+ ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, r->server,
+ "[mod_eat_post] ap_setup_client_block failed: %d", rc);
+#else
+ ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, r->server,
+ "[mod_eat_post] ap_setup_client_block failed: %d", rc);
+#endif /* APACHE1 */
+ return rc;
+ }
+
+ if (!ap_should_client_block(r)) {
+ return OK;
+ }
+
+#ifdef APACHE1
+ ap_send_http_header(r);
+#endif
+
+ while ((nrd = ap_get_client_block(r, buff, sizeof(buff))) > 0) {
+ total += nrd;
+ }
+
+ ap_rprintf(r, "%ld\n", total);
+
+ return OK;
+}
+
+APACHE_HTTPD_TEST_MODULE(eat_post);