Commit b2b7e5fa authored by stefano's avatar stefano

Make the nb_max_connections and nb_connections int variables unsigned.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15191 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6a9a02bd
......@@ -294,8 +294,8 @@ static int need_to_start_children;
/* maximum number of simultaneous HTTP connections */
static unsigned int nb_max_http_connections = 2000;
static int nb_max_connections = 5;
static int nb_connections;
static unsigned int nb_max_connections = 5;
static unsigned int nb_connections;
static uint64_t max_bandwidth = 1000;
static uint64_t current_bandwidth;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment