[xiph-commits] r9757 - in icecast/trunk/icecast: doc src
karl at svn.xiph.org
karl at svn.xiph.org
Tue Aug 16 07:58:36 PDT 2005
Author: karl
Date: 2005-08-16 07:58:33 -0700 (Tue, 16 Aug 2005)
New Revision: 9757
Modified:
icecast/trunk/icecast/doc/icecast2_config_file.html
icecast/trunk/icecast/src/global.h
Log:
increase the number of listening sockets allowed. A more flexible scheme can
be done later if required
Modified: icecast/trunk/icecast/doc/icecast2_config_file.html
===================================================================
--- icecast/trunk/icecast/doc/icecast2_config_file.html 2005-08-15 18:33:20 UTC (rev 9756)
+++ icecast/trunk/icecast/doc/icecast2_config_file.html 2005-08-16 14:58:33 UTC (rev 9757)
@@ -173,7 +173,11 @@
<fileserve>1</fileserve>
<shoutcast-mount>/live.nsv</shoutcast-mount>
</pre>
-<p>This section contains miscellaneous server settings. Note that multiple listen-socket sections may be configured in order to have icecast2 listen on multiple network interfaces. If a bind-address is not specified for a particular listen-socket, then the socket will be bound to all interfaces. Generally, you won't need to set bind-address.
+<p>This section contains miscellaneous server settings. Note that multiple listen-socket
+sections may be configured in order to have icecast2 listen on multiple network interfaces.
+If a bind-address is not specified for a particular listen-socket, then the socket will be
+bound to all interfaces. Generally, you won't need to set bind-address. There is an internal
+limit of 20 listening sockets currently, which may be extended in later releases.
</p>
<h4>port</h4>
<div class="indentedbox">
Modified: icecast/trunk/icecast/src/global.h
===================================================================
--- icecast/trunk/icecast/src/global.h 2005-08-15 18:33:20 UTC (rev 9756)
+++ icecast/trunk/icecast/src/global.h 2005-08-16 14:58:33 UTC (rev 9757)
@@ -20,7 +20,7 @@
#define ICECAST_VERSION_STRING "Icecast " PACKAGE_VERSION
-#define MAX_LISTEN_SOCKETS 10
+#define MAX_LISTEN_SOCKETS 20
#include "thread/thread.h"
#include "slave.h"
More information about the commits
mailing list