Document options for new HTTP/RPC server in --help

This commit is contained in:
Wladimir J. van der Laan
2015-08-28 17:14:51 +02:00
parent be33f3f50b
commit 6d2bc22146
3 changed files with 13 additions and 5 deletions

View File

@@ -355,7 +355,7 @@ bool StartHTTPServer(boost::thread_group& threadGroup)
return false;
}
evhttp_set_timeout(http, GetArg("-rpctimeout", 30));
evhttp_set_timeout(http, GetArg("-rpctimeout", DEFAULT_HTTP_TIMEOUT));
evhttp_set_max_body_size(http, MAX_SIZE);
evhttp_set_gencb(http, http_request_cb, NULL);
@@ -367,8 +367,8 @@ bool StartHTTPServer(boost::thread_group& threadGroup)
}
LogPrint("http", "Starting HTTP server\n");
int workQueueDepth = std::max((long)GetArg("-rpcworkqueue", 16), 1L);
int rpcThreads = std::max((long)GetArg("-rpcthreads", 4), 1L);
int workQueueDepth = std::max((long)GetArg("-rpcworkqueue", DEFAULT_HTTP_WORKQUEUE), 1L);
int rpcThreads = std::max((long)GetArg("-rpcthreads", DEFAULT_HTTP_THREADS), 1L);
LogPrintf("HTTP: creating work queue of depth %d and %d worker threads\n", workQueueDepth, rpcThreads);
workQueue = new WorkQueue<HTTPClosure>(workQueueDepth);