diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-12-08 18:12:28 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-12-08 18:12:28 +0100 |
commit | 7e84b5570adeaa027f8c7861caf6af7943edcd0b (patch) | |
tree | ed861b2116ba354321829da3fcb2dc1f8ee93cee /src/include/taler_mhd_lib.h | |
parent | ed7379d235b39d71e4cd94f90b52627c32c6d8e7 (diff) |
fix error handling for very large uploads, fix re-generation of /keys response after Expires expires
Diffstat (limited to 'src/include/taler_mhd_lib.h')
-rw-r--r-- | src/include/taler_mhd_lib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/taler_mhd_lib.h b/src/include/taler_mhd_lib.h index ba5a072c4..7f38ffcf5 100644 --- a/src/include/taler_mhd_lib.h +++ b/src/include/taler_mhd_lib.h @@ -31,6 +31,12 @@ /** + * Maximum POST request size. + */ +#define TALER_MHD_REQUEST_BUFFER_MAX (1024 * 1024 * 16) + + +/** * Global options for response generation. */ enum TALER_MHD_GlobalOptions |