Browse Source

ffserver: warn if config uses a system port

Should be harmless as far as users know what they are doing
but an informative warning wont hurt. For details, refer to
http://tools.ietf.org/html/rfc6335

Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
tags/n2.4
Reynaldo H. Verdejo Pinochet 10 years ago
parent
commit
fb2de3c4d1
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      ffserver.c

+ 2
- 0
ffserver.c View File

@@ -4089,6 +4089,8 @@ static int parse_ffconfig(const char *filename)
if (val < 1 || val > 65536) {
ERROR("Invalid port: %s\n", arg);
}
if (val < 1024)
WARNING("Trying to use IETF assigned system port: %d\n", val);
my_http_addr.sin_port = htons(val);
} else if (!av_strcasecmp(cmd, "HTTPBindAddress") || !av_strcasecmp(cmd, "BindAddress")) {
if (!av_strcasecmp(cmd, "BindAddress"))


Loading…
Cancel
Save