From f219b47a33c9ba3b8b03ebe3e55f8723936415e2 Mon Sep 17 00:00:00 2001 From: Richard Nyberg Date: Fri, 17 Feb 2006 20:55:02 +0000 Subject: [PATCH] Set default value of cm_alloc_size to 2MB. --- btpd/opts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btpd/opts.c b/btpd/opts.c index 70f4925..1b77c2a 100644 --- a/btpd/opts.c +++ b/btpd/opts.c @@ -11,4 +11,4 @@ unsigned net_max_peers; unsigned net_bw_limit_in; unsigned net_bw_limit_out; int net_port = 6881; -off_t cm_alloc_size = 2048; +off_t cm_alloc_size = 2048 * 1024;