<p dir="ltr">Anyway, it does not affect kernel, if you're using linux. </p>
<div class="gmail_quote">15.04.2014 4:22 пользователь "Warren Young" <<a href="mailto:warren@etr-usa.com">warren@etr-usa.com</a>> написал:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 4/14/2014 08:24, Amir Marzouk wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
I'm looking for how to increase the number of concurrent clients. I<br>
found in this link that i need to redefine "FD_SETSIZE". but I have not<br>
found how and where?<br>
</blockquote>
<br>
This is pretty basic stuff, a thing you should know as a programmer regardless of your use of Live555.<br>
<br>
If you're using Makefiles:<br>
<br>
    CFLAGS=$(CFLAGS) -DFD_SETSIZE=2048<br>
<br>
That is, just append it to the value of CFLAGS or CXXFLAGS.<br>
<br>
If you're using some other build system, you just need to find out where global #defines are normally set.<br>
<br>
You can do this in a header, too:<br>
<br>
    #define FD_SETSIZE 2048<br>
<br>
...but you have to make certain it's #included before things like netinet/in.h, arpa/inet.h, winsock.h, etc.  Doing it at the build system level is more certain to override the platform default.<br>
______________________________<u></u>_________________<br>
live-devel mailing list<br>
<a href="mailto:live-devel@lists.live555.com" target="_blank">live-devel@lists.live555.com</a><br>
<a href="http://lists.live555.com/mailman/listinfo/live-devel" target="_blank">http://lists.live555.com/<u></u>mailman/listinfo/live-devel</a><br>
</blockquote></div>