Browse Source

upgrade bandwidth config to use int64_t, raise limit

Originally committed as revision 13842 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 17 years ago
parent
commit
0dc17c21ec
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      ffserver.c

+ 4
- 3
ffserver.c View File

@@ -3776,14 +3776,15 @@ static int parse_ffconfig(const char *filename)
nb_max_connections = val;
}
} else if (!strcasecmp(cmd, "MaxBandwidth")) {
int64_t llval;
get_arg(arg, sizeof(arg), &p);
val = atoi(arg);
if (val < 10 || val > 100000) {
llval = atoll(arg);
if (llval < 10 || llval > 10000000) {
fprintf(stderr, "%s:%d: Invalid MaxBandwidth: %s\n",
filename, line_num, arg);
errors++;
} else
max_bandwidth = val;
max_bandwidth = llval;
} else if (!strcasecmp(cmd, "CustomLog")) {
get_arg(logfilename, sizeof(logfilename), &p);
} else if (!strcasecmp(cmd, "<Feed")) {


Loading…
Cancel
Save