1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From f9b0a68358b178e12752c929d522e4d9772a9b24 Mon Sep 17 00:00:00 2001
From: Olivier Courtin <olivier.courtin@oslandia.com>
Date: Mon, 26 Oct 2015 02:26:33 +0100
Subject: Update cgi_request.c
Origin: https://github.com/mapserver/tinyows/commit/f9b0a68358b178e12752c929d522e4d9772a9b24
Increase CGI GET Limit
---
src/struct/cgi_request.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/src/struct/cgi_request.c
+++ b/src/struct/cgi_request.c
@@ -33,7 +33,7 @@
/*
* Max query string length send via QUERY_STRING CGI
*/
-#define CGI_QUERY_MAX 32768
+#define CGI_QUERY_MAX 1000000
/*
|