|
From: Oredope, A. <ao...@es...> - 2008-02-20 10:50:32
|
Hello Enrico, Thanks a lot for your quick response. I have a script that starts 25 nodes but there is always a callback failure from the 20th node onwards I was initially thinking maybe the amount of tcp connections are limited to 20, but I will appreciate you advise on this. Please find attached the log files and the prompt output. Please also fine below a section of the code I use in generating the nodes I look forward to hear from you Regards, Tola #Define Paramenters a=127.0.0.1 c=127.0.0. x=1 p=5060 s=1s t=60 n=1 tn=10 for ((x=1; x<=25; x++ )); do if [ $x -eq 1 ]; then sipdht -a $a -p $p -s$t & sleep 3s else z=`expr $x - 1` rm -f /tmp/sipdhtlog/$x.log; SIPDHT_DEBUG=9 TPORT_DUMP=/tmp/sipdhtlog/$x.log sipdht -a $c$x -p $p -s$t sip:$c$z:$p & sleep $s echo "node $x has Joined" fi done -----Original Message----- From: Enrico Marocco [mailto:enr...@te...] Sent: 20 February 2008 07:59 To: Oredope, Adetola Cc: sip...@li... Subject: Re: [Sipdht-devel] SIPDHT Experiments Adetola Oredope wrote: > I am very aware that you no longer support the first version of sipdht.. > But, is it possible that anyone may know how increase the maximum number > of tcp connections in the sipdht version 1, cos at the moment it is > limiting me to just 20 connection after which there is a callback > failure. As far as I remember we didn't impose a limit to the number of tcp connections. I suspect it is something related to sofia-sip, but probably some debug information could help us to better understand what's going on. -- Ciao, Enrico |