From 0ab1a4aeebe52fe50964f8a9e3d37aeaf11be6f2 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Thu, 14 Mar 2013 13:15:21 +0100 Subject: [PATCH] Make chunk default size 10 MB --- src/httpbf/src/httpbf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httpbf/src/httpbf.c b/src/httpbf/src/httpbf.c index 491ab34b92..52326e4c72 100644 --- a/src/httpbf/src/httpbf.c +++ b/src/httpbf/src/httpbf.c @@ -40,7 +40,7 @@ #define DEBUG_HBF(...) printf(__VA_ARGS__) #endif -#define DEFAULT_BLOG_SIZE (1024*1024) +#define DEFAULT_BLOG_SIZE (10*1024*1024) static int get_transfer_block_size() { return DEFAULT_BLOG_SIZE;