1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

increase the number of listening sockets allowed. A more flexible scheme can

be done later if required

svn path=/icecast/trunk/icecast/; revision=9757
This commit is contained in:
Karl Heyes 2005-08-16 14:58:33 +00:00
parent 4c771579b8
commit ab8e36bd19
2 changed files with 6 additions and 2 deletions

View File

@ -173,7 +173,11 @@ The URL which icecast2 uses to communicate with the Directory server. The value
<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">

View File

@ -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"