diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2014-08-20 00:49:38 -0400 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2014-08-24 20:03:22 -0400 |
commit | d67d4072390d8db6520306e40795a75ee54e2b61 (patch) | |
tree | 63eb05c813599c2db6bd9d90e907ec42155ff5d3 | |
parent | 3fe9e7be4c70c8fccdcd56fd19276e668cfb7de8 (diff) | |
download | ffmpeg-d67d4072390d8db6520306e40795a75ee54e2b61.tar.gz |
ffserver: tests, use new port/bindaddress config
Comming from commit 1013d8dd6967f1e776c08dc133ed6ae44ca3dc64
the old Port and BindAddress config vars have been deprecated
in favor of HTTPPort and HTTPBindAddress respectively.
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
-rw-r--r-- | tests/ffserver.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ffserver.conf b/tests/ffserver.conf index 1e6994aa1c..05bd38f741 100644 --- a/tests/ffserver.conf +++ b/tests/ffserver.conf @@ -11,13 +11,13 @@ # port from your standard http web server if it is running on the same # computer. -Port 9999 +HTTPPort 9999 RTSPPort 9990 # Address on which the server is bound. Only useful if you have # several network interfaces. -BindAddress 0.0.0.0 +HTTPBindAddress 0.0.0.0 # Number of simultaneous requests that can be handled. Since FFServer # is very fast, this limit is determined mainly by your Internet |