[FFmpeg-cvslog] r15191 - trunk/ffserver.c
stefano
subversion
Wed Sep 3 22:10:32 CEST 2008
Author: stefano
Date: Wed Sep 3 22:10:32 2008
New Revision: 15191
Log:
Make the nb_max_connections and nb_connections int variables unsigned.
Modified:
trunk/ffserver.c
Modified: trunk/ffserver.c
==============================================================================
--- trunk/ffserver.c (original)
+++ trunk/ffserver.c Wed Sep 3 22:10:32 2008
@@ -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;
More information about the ffmpeg-cvslog
mailing list