mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Make the nb_max_connections and nb_connections int variables unsigned.
Originally committed as revision 15191 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c4e02d702c
commit
4af92de6f6
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user