diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-08-28 17:14:51 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-09-03 10:59:19 +0200 |
commit | 6d2bc221463ffe3ed3a99e8c682b090983b2e7b5 (patch) | |
tree | 4370d570b38fea9ffa1ad630b481433cfb2b890b /src/httpserver.h | |
parent | be33f3f50b7358bbad9e16bf730fac2ab3c4886b (diff) |
Document options for new HTTP/RPC server in --help
Diffstat (limited to 'src/httpserver.h')
-rw-r--r-- | src/httpserver.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/httpserver.h b/src/httpserver.h index 648e8b6f86..1b0d77ad4d 100644 --- a/src/httpserver.h +++ b/src/httpserver.h @@ -11,6 +11,10 @@ #include <boost/scoped_ptr.hpp> #include <boost/function.hpp> +static const int DEFAULT_HTTP_THREADS=4; +static const int DEFAULT_HTTP_WORKQUEUE=16; +static const int DEFAULT_HTTP_TIMEOUT=30; + struct evhttp_request; struct event_base; class CService; |