diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2014-08-02 16:40:53 +0200 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2014-08-17 22:51:45 -0400 |
commit | 1013d8dd6967f1e776c08dc133ed6ae44ca3dc64 (patch) | |
tree | 4bc27ceb9353b8c674db8f94323eb252b7a3a824 /doc/ffserver.conf | |
parent | 96d217832598da7001bc204706476dd1e37f377e (diff) | |
download | ffmpeg-1013d8dd6967f1e776c08dc133ed6ae44ca3dc64.tar.gz |
ffserver: deprecate Port and BindAddress options in favor of HTTPPort and HTTPBindAddress
The new option names are more explicit.
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Diffstat (limited to 'doc/ffserver.conf')
-rw-r--r-- | doc/ffserver.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ffserver.conf b/doc/ffserver.conf index 094c093af2..b756961aa3 100644 --- a/doc/ffserver.conf +++ b/doc/ffserver.conf @@ -1,11 +1,11 @@ # Port on which the server is listening. You must select a different # port from your standard HTTP web server if it is running on the same # computer. -Port 8090 +HTTPPort 8090 # 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 HTTP connections that can be handled. It has # to be defined *before* the MaxClients parameter, since it defines the |