You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(10) |
Jul
(10) |
Aug
|
Sep
|
Oct
(2) |
Nov
(6) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(16) |
Feb
(14) |
Mar
|
Apr
(5) |
May
|
Jun
(4) |
Jul
(2) |
Aug
|
Sep
(3) |
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
(29) |
Feb
(22) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: stefano <st....@gm...> - 2008-01-29 17:27:38
|
Currently our statistics (in the window statusbar) are defined in the following way: Time: seconds from the startup of the program (refreshed every 5 sec) Peers: total number of "live peers" in the simulation Sessions: total number of sessions of "live peers" in the overlay (so 2 peers => 1 session for each peer = 2 sessions) Packets sents: total packets sents by all "live peers" for all current sessions Received: total packets received by all "live peers" for all current sessions So, peers, sessions, packets sents and received are not cumulative but this data represents only the "current state of the overlay", because we want to know how much traffic is produced by the active peers. If you need cumulative data it must be implemented: - If you need a fast way to count peers probably you can write to the log file and then doing "grep" in the logfile - if you need cumulative counters for packets you have to modify gtk_statusbar_update in gsim-sipdht2.c and made counter variables static. Cheers, Stefano 2008/1/29, Oredope, Adetola <ao...@es...>: > > Thanks a lot for your quick response. > > > > I will like your help in defining some parameters in the simulation and > they are as follows > > > > *Time:* The time the overlay has been running for? > > *Peers:* The Amount of peers in the overlay? > > *Sessions:* The amount of active sessions in the overlay? (I discovered > that when there a just 2 peers there are also 2 sessions, why is this so?) > > *Packets sent:* Is this the total amount of packet sent in the overlay or > is it by the bootstrap (1st ) peer ? if it the total amount of packets is > there a way narrowing down the average ammont of packets sent by each peer > > *Received:* Same question as sent > > > > I look forward to hearing from you. > > > > Thanks a lot once again for your help. > > > > Regards, > > > > Tola > > > > > > *From:* stefano [mailto:st....@gm...] > *Sent:* 29 January 2008 12:47 > *To:* Oredope, Adetola > *Cc:* sip...@li... > *Subject:* Re: [Sipdht-devel] results for gsim-sipdht2 > > > > If you mean how to log libxpp and libsipdht2 messages to a file > it's not implemented, however you can add yourself the following code > somewhere in gsim-sipdht2.c > > #include <sofia-sip/su_log.h> > extern su_log_t xpp_log[]; > extern su_log_t sipdht_log[]; > > static > void log_handler(void *logarg, char const *format, va_list ap) > { > static FILE *log = NULL; > > if (!log) > log = fopen("/tmp/sim.log", "a+"); > vfprintf(log, format, ap); > fflush(log); > } > > then in main() just before gtk_main() add: > > su_log_set_level(xpp_log, 8); > su_log_redirect(xpp_log, log_handler, NULL); > su_log_set_level(sipdht_log, 8); > su_log_redirect(sipdht_log, log_handler, NULL); > > Ciao, > Stefano > > 2008/1/29, Oredope, Adetola <ao...@es...>: > > I know I have asked this earlier on but I was kind of unclear > > > > I will like to find out if there is way I can collect the results of the > simulator into a file or out put it to command line. > > > > Regards > > > > Adetola Oredope > > > > Pervasive Networks and Services Research Group, > > University of Essex, Department of Electronic Systems Engineering, > > Wivenhoe Park, Colchester > > CO4 3SQ > > United Kingdom > > http://www.essex.ac.uk/ese/research/pervasivenetworks/ > > > > --- Never walk away from someone who deserves help; your hand is God's > hand for that person. > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Sipdht-devel mailing list > Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > > > |
From: Oredope, A. <ao...@es...> - 2008-01-29 17:02:00
|
Thanks a lot for your quick response. =20 I will like your help in defining some parameters in the simulation and they are as follows =20 Time: The time the overlay has been running for? Peers: The Amount of peers in the overlay? Sessions: The amount of active sessions in the overlay? (I discovered that when there a just 2 peers there are also 2 sessions, why is this so?) Packets sent: Is this the total amount of packet sent in the overlay or is it by the bootstrap (1st ) peer ? if it the total amount of packets is there a way narrowing down the average ammont of packets sent by each peer Received: Same question as sent =20 I look forward to hearing from you. =20 Thanks a lot once again for your help. =20 Regards, =20 Tola =20 =20 From: stefano [mailto:st....@gm...]=20 Sent: 29 January 2008 12:47 To: Oredope, Adetola Cc: sip...@li... Subject: Re: [Sipdht-devel] results for gsim-sipdht2 =20 If you mean how to log libxpp and libsipdht2 messages to a file it's not implemented, however you can add yourself the following code somewhere in gsim-sipdht2.c #include <sofia-sip/su_log.h> extern su_log_t xpp_log[]; extern su_log_t sipdht_log[]; static void log_handler(void *logarg, char const *format, va_list ap) { static FILE *log =3D NULL; if (!log) log =3D fopen("/tmp/sim.log", "a+"); vfprintf(log, format, ap); fflush(log); =20 } then in main() just before gtk_main() add: su_log_set_level(xpp_log, 8); su_log_redirect(xpp_log, log_handler, NULL); su_log_set_level(sipdht_log, 8); su_log_redirect(sipdht_log, log_handler, NULL); Ciao, Stefano 2008/1/29, Oredope, Adetola <ao...@es...>: I know I have asked this earlier on but I was kind of unclear =20 I will like to find out if there is way I can collect the results of the simulator into a file or out put it to command line. =20 Regards =20 Adetola Oredope =20 Pervasive Networks and Services Research Group, University of Essex, Department of Electronic Systems Engineering, Wivenhoe Park, Colchester=20 CO4 3SQ=20 United Kingdom http://www.essex.ac.uk/ese/research/pervasivenetworks/ =20 --- Never walk away from someone who deserves help; your hand is God's hand for that person. ------------------------------------------------------------------------ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Sipdht-devel mailing list Sip...@li... https://lists.sourceforge.net/lists/listinfo/sipdht-devel =20 |
From: stefano <st....@gm...> - 2008-01-29 12:46:58
|
If you mean how to log libxpp and libsipdht2 messages to a file it's not implemented, however you can add yourself the following code somewhere in gsim-sipdht2.c #include <sofia-sip/su_log.h> extern su_log_t xpp_log[]; extern su_log_t sipdht_log[]; static void log_handler(void *logarg, char const *format, va_list ap) { static FILE *log = NULL; if (!log) log = fopen("/tmp/sim.log", "a+"); vfprintf(log, format, ap); fflush(log); } then in main() just before gtk_main() add: su_log_set_level(xpp_log, 8); su_log_redirect(xpp_log, log_handler, NULL); su_log_set_level(sipdht_log, 8); su_log_redirect(sipdht_log, log_handler, NULL); Ciao, Stefano 2008/1/29, Oredope, Adetola <ao...@es...>: > > I know I have asked this earlier on but I was kind of unclear > > > > I will like to find out if there is way I can collect the results of the > simulator into a file or out put it to command line. > > > > Regards > > > > Adetola Oredope > > > > Pervasive Networks and Services Research Group, > > University of Essex, Department of Electronic Systems Engineering, > > Wivenhoe Park, Colchester > > CO4 3SQ > > United Kingdom > > http://www.essex.ac.uk/ese/research/pervasivenetworks/ > > > > --- Never walk away from someone who deserves help; your hand is God's > hand for that person. > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Sipdht-devel mailing list > Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > > |
From: Ge@@ru <ge...@gm...> - 2008-01-29 11:55:41
|
Probably it is more easy create a scripts that execute different gsipdht2 or csipdht2 and redirect output to different files. These files can be used by another script to build what you want. :) Gim-sipdht2 isn't updated to last improvements do on libsipdht/libxpp/gsipdht2, so to have an analysis corrected try to use gsipdht2 or csipdht2; both programs can be execute directly through only a complete command line and without gui configuration (for gsipdht2). Bye, Ge@@ru On Tue, 2008-01-29 at 11:46 +0000, Oredope, Adetola wrote: > I know I have asked this earlier on but I was kind of unclear > > > > I will like to find out if there is way I can collect the results of > the simulator into a file or out put it to command line. > > > > Regards > > > > Adetola Oredope > > > > Pervasive Networks and Services Research Group, > > University of Essex, Department of Electronic Systems Engineering, > > Wivenhoe Park, Colchester > > CO4 3SQ > > United Kingdom > > http://www.essex.ac.uk/ese/research/pervasivenetworks/ > > > > --- Never walk away from someone who deserves help; your hand is God's > hand for that person. > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ Sipdht-devel mailing list Sip...@li... https://lists.sourceforge.net/lists/listinfo/sipdht-devel |
From: Oredope, A. <ao...@es...> - 2008-01-29 11:47:59
|
I know I have asked this earlier on but I was kind of unclear =20 I will like to find out if there is way I can collect the results of the simulator into a file or out put it to command line. =20 Regards =20 Adetola Oredope =20 Pervasive Networks and Services Research Group, University of Essex, Department of Electronic Systems Engineering, Wivenhoe Park, Colchester=20 CO4 3SQ=20 United Kingdom http://www.essex.ac.uk/ese/research/pervasivenetworks/ <http://www.essex.ac.uk/ese/research/pervasivenetworks/>=20 =20 --- Never walk away from someone who deserves help; your hand is God's hand for that person. |
From: Oredope, A. <ao...@es...> - 2008-01-23 11:53:23
|
Please find attached the bug info -----Original Message----- From: Ge@@ru [mailto:ge...@gm...]=20 Sent: 23 January 2008 08:54 To: Oredope, Adetola Cc: sip...@li... Subject: Re: [Sipdht-devel] Simulator at command line Hi,=20 can you describe your problems with simulator and send here some debugging informations? Thanks, Ge@@ru On Wed, 2008-01-23 at 08:12 +0000, Oredope, Adetola wrote: > Hello, >=20 > =20 >=20 > I will like to find out if there are any possibilities of running the > sipdht2 simulator at command line and probably outputting all the > parameters into a file. >=20 > This is because at the moment the simulator is not quite stable with a > high amount of peers running (we have used up to 194 peers) and we > believe the problem may lie with the GUI. We are also looking at > running the simulations with logarithmic scales, meaning we may need > up to 100s of thousands of peers running. Processing power is not a > limitation at our end because we plan to use a high-performance > clusters. >=20 > =20 >=20 > Please we will like any suggestions/criticisms concerning this. >=20 > =20 >=20 > Regards, >=20 > =20 >=20 > =20 >=20 > Adetola Oredope >=20 > =20 >=20 > Pervasive Networks and Services Research Group, >=20 > University of Essex, Department of Electronic Systems Engineering, >=20 > Wivenhoe Park, Colchester >=20 > CO4 3SQ=20 >=20 > United Kingdom >=20 > http://www.essex.ac.uk/ese/research/pervasivenetworks/ >=20 > =20 >=20 > --- Never walk away from someone who deserves help; your hand is God's > hand for that person. >=20 >=20 > ------------------------------------------------------------------------ - > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ Sipdht-devel mailing list Sip...@li... https://lists.sourceforge.net/lists/listinfo/sipdht-devel |
From: Ge@@ru <ge...@gm...> - 2008-01-23 08:53:44
|
Hi, can you describe your problems with simulator and send here some debugging informations? Thanks, Ge@@ru On Wed, 2008-01-23 at 08:12 +0000, Oredope, Adetola wrote: > Hello, > > > > I will like to find out if there are any possibilities of running the > sipdht2 simulator at command line and probably outputting all the > parameters into a file. > > This is because at the moment the simulator is not quite stable with a > high amount of peers running (we have used up to 194 peers) and we > believe the problem may lie with the GUI. We are also looking at > running the simulations with logarithmic scales, meaning we may need > up to 100s of thousands of peers running. Processing power is not a > limitation at our end because we plan to use a high-performance > clusters. > > > > Please we will like any suggestions/criticisms concerning this. > > > > Regards, > > > > > > Adetola Oredope > > > > Pervasive Networks and Services Research Group, > > University of Essex, Department of Electronic Systems Engineering, > > Wivenhoe Park, Colchester > > CO4 3SQ > > United Kingdom > > http://www.essex.ac.uk/ese/research/pervasivenetworks/ > > > > --- Never walk away from someone who deserves help; your hand is God's > hand for that person. > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ Sipdht-devel mailing list Sip...@li... https://lists.sourceforge.net/lists/listinfo/sipdht-devel |
From: Enrico M. <enr...@te...> - 2008-01-23 08:39:10
|
Oredope, Adetola wrote: > I will like to find out if there are any possibilities of running the > sipdht2 simulator at command line and probably outputting all the > parameters into a file. Unfortunately not, such a command line application should be written from scratch. However, I don't think it is a big issue, as libsipdht2 APIs provide quite an easy interface to handle peers. > This is because at the moment the simulator is not quite stable with a > high amount of peers running (we have used up to 194 peers) and we > believe the problem may lie with the GUI. We are also looking at running > the simulations with logarithmic scales, meaning we may need up to 100s > of thousands of peers running. Processing power is not a limitation at > our end because we plan to use a high-performance clusters. Well, another issue with the graphical simulator is that it requires a lot more processing power for refreshing the graphical interface than for running the peers. In fact, any event occorred to each peer triggers a complete redraw of the whole window. All in all, the goal of the gsim-sipdht is to show how CAN works. -- Ciao, Enrico |
From: Oredope, A. <ao...@es...> - 2008-01-23 08:13:23
|
Hello, =20 I will like to find out if there are any possibilities of running the sipdht2 simulator at command line and probably outputting all the parameters into a file. This is because at the moment the simulator is not quite stable with a high amount of peers running (we have used up to 194 peers) and we believe the problem may lie with the GUI. We are also looking at running the simulations with logarithmic scales, meaning we may need up to 100s of thousands of peers running. Processing power is not a limitation at our end because we plan to use a high-performance clusters. =20 Please we will like any suggestions/criticisms concerning this. =20 Regards, =20 =20 Adetola Oredope =20 Pervasive Networks and Services Research Group, University of Essex, Department of Electronic Systems Engineering, Wivenhoe Park, Colchester=20 CO4 3SQ=20 United Kingdom http://www.essex.ac.uk/ese/research/pervasivenetworks/ <http://www.essex.ac.uk/ese/research/pervasivenetworks/>=20 =20 --- Never walk away from someone who deserves help; your hand is God's hand for that person. |
From: Enrico M. <enr...@te...> - 2008-01-21 08:32:37
|
Oredope, Adetola wrote: > Is the conference room up? I have been trying to connect... I'm currently in. Room: sipdht, Server: conference.tilab.com. -- Ciao, Enrico |
From: Oredope, A. <ao...@es...> - 2008-01-21 08:30:19
|
Is the conference room up? I have been trying to connect... Regards, Tola -----Original Message----- From: Enrico Marocco [mailto:enr...@te...]=20 Sent: 17 January 2008 15:56 To: Oredope, Adetola Cc: ge...@gm...; wangdq; sip...@li... Subject: Re: [Sipdht-devel] how to get sofia-sip-1.12.7devel Oredope, Adetola wrote: > I have tried downloading the development sources from darcs using the > sofia-sip repo but there are no development packages there. sofia-sip-1.12.7devel is a tag the install script puts in a system=20 configuration file; it is not a file itself. > I installed the version in the darcs but libxpp is asking for > sofia-sip-1.12.7devel It's hard to tell, but I guess you installed sofia-sip in a non-standard path. If it is the case, sipdht is still probably trying to link=20 against the old version. There are many ways to tell the linker where=20 to look for libraries, e.g. setting the LDFLAGS-L<non-standard install=20 path> at configuration/build time and = LD_LIBRARY_PATH=3D<non-standard...>=20 at run time. However, this kind of issues are worth discussed in the jabber chatroom=20 si...@co.... --=20 Ciao, Enrico -------------------------------------------------------------------- CONFIDENTIALITY NOTICE This message and its attachments are addressed solely to the persons above and may contain confidential information. If you have received the message in error, be informed that any use of the content hereof is prohibited. Please return it immediately to the sender and delete the message. Should you have any questions, please contact us by replying to web...@te.... Thank you www.telecomitalia.it -------------------------------------------------------------------- =20 |
From: wangdq <wa...@go...> - 2008-01-18 01:15:36
|
Oredope, Adetola 写道: > I have tried downloading the development sources from darcs using the > sofia-sip repo but there are no development packages there. > > I installed the version in the darcs but libxpp is asking for > sofia-sip-1.12.7devel > > How can I go about this? > > The list of the darcs is shown below > > -rw-r--r-- 1 root root 273133 2008-01-17 13:32 aclocal.m4 > -rw-r--r-- 1 root root 1339 2008-01-17 09:07 AUTHORS > -rwxr-xr-x 1 root root 137 2008-01-17 09:07 autogen.sh > drwxr-xr-x 2 root root 4096 2008-01-17 13:32 autom4te.cache > -rw-r--r-- 1 root root 710 2008-01-17 09:07 ChangeLog > -rw-r--r-- 1 root root 143083 2008-01-17 09:07 ChangeLog.ext-trees > -rwxr-xr-x 1 root root 44595 2007-08-29 13:28 config.guess > -rw-r--r-- 1 root root 13102 2008-01-17 13:32 config.h > -rw-r--r-- 1 root root 12374 2008-01-17 13:32 config.h.in > -rw-r--r-- 1 root root 124288 2008-01-17 13:32 config.log > -rwxr-xr-x 1 root root 49016 2008-01-17 13:32 config.status > -rwxr-xr-x 1 root root 32726 2007-08-29 13:28 config.sub > -rwxr-xr-x 1 root root 939768 2008-01-17 13:32 configure > -rw-r--r-- 1 root root 8895 2008-01-17 09:07 configure.ac > -rw-r--r-- 1 root root 26423 2008-01-17 09:07 COPYING > -rw-r--r-- 1 root root 11453 2008-01-17 09:07 COPYRIGHTS > drwxr-xr-x 7 root root 4096 2008-01-17 09:04 _darcs > -rwxr-xr-x 1 root root 17574 2008-01-17 13:32 depcomp > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 docs > -rwxr-xr-x 1 root root 13184 2008-01-17 13:32 install-sh > drwxr-xr-x 22 root root 4096 2008-01-17 13:37 libsofia-sip-ua > drwxr-xr-x 5 root root 4096 2008-01-17 13:37 libsofia-sip-ua-glib > -rwxr-xr-x 1 root root 227856 2008-01-17 13:32 libtool > -rwxr-xr-x 1 root root 198965 2007-08-29 13:28 ltmain.sh > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 m4 > -rw-r--r-- 1 root root 27532 2008-01-17 13:32 Makefile > -rw-r--r-- 1 root root 2071 2008-01-17 09:07 Makefile.am > -rw-r--r-- 1 root root 28272 2008-01-17 13:32 Makefile.in > drwxr-xr-x 3 root root 4096 2008-01-17 13:47 man > -rwxr-xr-x 1 root root 11135 2008-01-17 13:32 missing > drwxr-xr-x 5 root root 4096 2008-01-17 13:32 open_c > drwxr-xr-x 2 root root 4096 2008-01-17 13:32 packages > -rw-r--r-- 1 root root 1943 2008-01-17 09:07 README > -rw-r--r-- 1 root root 4191 2008-01-17 09:07 README.developers > -rw-r--r-- 1 root root 2456 2008-01-17 09:07 RELEASE > -rw-r--r-- 1 root root 2456 2008-01-17 09:07 RELEASE.template > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 rules > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 scripts > -rw-r--r-- 1 root root 23 2008-01-17 13:32 stamp-h1 > drwxr-xr-x 3 root root 4096 2008-01-17 13:32 tests > -rw-r--r-- 1 root root 933 2008-01-17 09:07 TODO > drwxr-xr-x 4 root root 4096 2008-01-17 13:37 utils > drwxr-xr-x 8 root root 4096 2008-01-17 13:32 win32 > > regards, > > Tola > > > > > -----Original Message----- > From: sip...@li... > [mailto:sip...@li...] On Behalf Of Ge@@ru > Sent: 17 January 2008 07:03 > To: wangdq > Cc: sip...@li... > Subject: Re: [Sipdht-devel] how to get sofia-sip-1.12.7devel > > You must get darcs sources from repository. See Develepment README > ( http://sofia-sip.org/repos/sofia-sip/README.developers ) > > > Bye > > Ge@@ru > > On Thu, 2008-01-17 at 13:37 +0800, wangdq wrote: > >> hi: >> how to ge sofia-sip-1.12.7devel ? >> >> >> > ------------------------------------------------------------------------ > - > >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ Sipdht-devel mailing >> > list Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > > > ------------------------------------------------------------------------ > - > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Sipdht-devel mailing list > Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > > > I do: changed the configure's version define ===>sofia-sip-1.12.7devel . and then ./configure . the make . make install It's OK . |
From: Ge@@ru <ge...@gm...> - 2008-01-17 18:38:18
|
Hi, have you removed sofia-sip-1.12.7 (package version) from your system before install darcs sources? Where have you installed new darcs sources? From path passed to --prefix flag on configure command check file sofia-sip-ua.pc installed from darcs sources (normally is on <$prefix_path>/lib/pkgconfig). Could be like this: prefix=<YOUR PREFIX PATH> exec_prefix=${prefix} libdir=${exec_prefix}/lib libexecdir=${exec_prefix}/libexec includedir=${prefix}/include include_sofiadir=${includedir}/sofia-sip-1.12 sofiaawkdir=${prefix}/share/sofia-sip Name: sofia-sip-ua Description: Sofia-SIP - a RFC3261 compliant SIP User-Agent library Version: 1.12.7devel Libs: -L${libdir} -lsofia-sip-ua Libs.private: -lssl -lcrypto -ldl -lrt -lpthread Cflags: -I${includedir}/sofia-sip-1.12 As you can see Version is 1.12.7devel. So, if you have used default prefix path probably this file is on /usr/local/lib/pkgconfig. Then, to compile libxpp you can: 1) Install sofia-sip-1.12.7devel on /usr/ directory; or 2) on configure of libxpp export PKG_CONFIG_PATH in this way: /path_of_libxpp_sources_directory $# PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure --prefix= $YOUR_PREFIX_PATH or 3) $# export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig $# ./configure --prefix=$YOUR_PREFIX_PATH (on libxpp package) This step must be done still for compile sipdht2 package. Bye. If you have still problem post your error from config.log. Ge@@ru On Thu, 2008-01-17 at 16:51 +0100, Sergi Puigventós wrote: > Maybe you can change the configure or make file erasing the "devel" > termination. That would look for sofia-sip-1.12.7. > > > On Jan 17, 2008 4:34 PM, Oredope, Adetola <ao...@es...> wrote: > I have tried downloading the development sources from darcs > using the > sofia-sip repo but there are no development packages there. > > I installed the version in the darcs but libxpp is asking for > sofia-sip-1.12.7devel > > > How can I go about this? > > The list of the darcs is shown below > > -rw-r--r-- 1 root root 273133 2008-01-17 13:32 aclocal.m4 > -rw-r--r-- 1 root root 1339 2008-01-17 09:07 AUTHORS > -rwxr-xr-x 1 root root 137 2008-01-17 09:07 autogen.sh > drwxr-xr-x 2 root root 4096 2008-01-17 13:32 autom4te.cache > -rw-r--r-- 1 root root 710 2008-01-17 09:07 ChangeLog > -rw-r--r-- 1 root root 143083 2008-01-17 09:07 > ChangeLog.ext-trees > -rwxr-xr-x 1 root root 44595 2007-08-29 13:28 config.guess > -rw-r--r-- 1 root root 13102 2008-01-17 13:32 config.h > -rw-r--r-- 1 root root 12374 2008-01-17 13:32 config.h.in > -rw-r--r-- 1 root root 124288 2008-01-17 13:32 config.log > -rwxr-xr-x 1 root root 49016 2008-01-17 13:32 config.status > -rwxr-xr-x 1 root root 32726 2007-08-29 13:28 config.sub > -rwxr-xr-x 1 root root 939768 2008-01-17 13:32 configure > -rw-r--r-- 1 root root 8895 2008-01-17 09:07 configure.ac > -rw-r--r-- 1 root root 26423 2008-01-17 09:07 COPYING > -rw-r--r-- 1 root root 11453 2008-01-17 09:07 COPYRIGHTS > drwxr-xr-x 7 root root 4096 2008-01-17 09:04 _darcs > -rwxr-xr-x 1 root root 17574 2008-01-17 13:32 depcomp > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 docs > -rwxr-xr-x 1 root root 13184 2008-01-17 13:32 install-sh > drwxr-xr-x 22 root root 4096 2008-01-17 13:37 > libsofia-sip-ua > drwxr-xr-x 5 root root 4096 2008-01-17 13:37 > libsofia-sip-ua-glib > -rwxr-xr-x 1 root root 227856 2008-01-17 13:32 libtool > -rwxr-xr-x 1 root root 198965 2007-08-29 13:28 ltmain.sh > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 m4 > -rw-r--r-- 1 root root 27532 2008-01-17 13:32 Makefile > -rw-r--r-- 1 root root 2071 2008-01-17 09:07 Makefile.am > -rw-r--r-- 1 root root 28272 2008-01-17 13:32 Makefile.in > drwxr-xr-x 3 root root 4096 2008-01-17 13:47 man > -rwxr-xr-x 1 root root 11135 2008-01-17 13:32 missing > drwxr-xr-x 5 root root 4096 2008-01-17 13:32 open_c > drwxr-xr-x 2 root root 4096 2008-01-17 13:32 packages > -rw-r--r-- 1 root root 1943 2008-01-17 09:07 README > -rw-r--r-- 1 root root 4191 2008-01-17 09:07 > README.developers > -rw-r--r-- 1 root root 2456 2008-01-17 09:07 RELEASE > -rw-r--r-- 1 root root 2456 2008-01-17 09:07 > RELEASE.template > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 rules > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 scripts > -rw-r--r-- 1 root root 23 2008-01-17 13:32 stamp-h1 > drwxr-xr-x 3 root root 4096 2008-01-17 13:32 tests > -rw-r--r-- 1 root root 933 2008-01-17 09:07 TODO > drwxr-xr-x 4 root root 4096 2008-01-17 13:37 utils > drwxr-xr-x 8 root root 4096 2008-01-17 13:32 win32 > > regards, > > Tola > > > > > > -----Original Message----- > From: sip...@li... > [mailto:sip...@li...] On Behalf > Of Ge@@ru > Sent: 17 January 2008 07:03 > To: wangdq > Cc: sip...@li... > Subject: Re: [Sipdht-devel] how to get sofia-sip-1.12.7devel > > You must get darcs sources from repository. See Develepment > README > ( http://sofia-sip.org/repos/sofia-sip/README.developers ) > > > Bye > > Ge@@ru > > On Thu, 2008-01-17 at 13:37 +0800, wangdq wrote: > > hi: > > how to ge sofia-sip-1.12.7devel ? > > > > > ------------------------------------------------------------------------ > - > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ Sipdht-devel > mailing > list Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > > > ------------------------------------------------------------------------ > - > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Sipdht-devel mailing list > Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Sipdht-devel mailing list > Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > > > > > -- > Sergi |
From: Enrico M. <enr...@te...> - 2008-01-17 15:57:24
|
Oredope, Adetola wrote: > I have tried downloading the development sources from darcs using the > sofia-sip repo but there are no development packages there. sofia-sip-1.12.7devel is a tag the install script puts in a system=20 configuration file; it is not a file itself. > I installed the version in the darcs but libxpp is asking for > sofia-sip-1.12.7devel It's hard to tell, but I guess you installed sofia-sip in a non-standard = path. If it is the case, sipdht is still probably trying to link=20 against the old version. There are many ways to tell the linker where=20 to look for libraries, e.g. setting the LDFLAGS-L<non-standard install=20 path> at configuration/build time and = LD_LIBRARY_PATH=3D<non-standard...>=20 at run time. However, this kind of issues are worth discussed in the jabber chatroom=20 si...@co.... --=20 Ciao, Enrico -------------------------------------------------------------------- CONFIDENTIALITY NOTICE This message and its attachments are addressed solely to the persons = above and may contain confidential information. If you have received the = message in error, be informed that any use of the content hereof is = prohibited. Please return it immediately to the sender and delete the = message. Should you have any questions, please contact us by replying to = web...@te.... Thank you www.telecomitalia.it -------------------------------------------------------------------- =20 |
From: <ser...@gm...> - 2008-01-17 15:51:57
|
Maybe you can change the configure or make file erasing the "devel" termination. That would look for sofia-sip-1.12.7. On Jan 17, 2008 4:34 PM, Oredope, Adetola <ao...@es...> wrote: > I have tried downloading the development sources from darcs using the > sofia-sip repo but there are no development packages there. > > I installed the version in the darcs but libxpp is asking for > sofia-sip-1.12.7devel > > How can I go about this? > > The list of the darcs is shown below > > -rw-r--r-- 1 root root 273133 2008-01-17 13:32 aclocal.m4 > -rw-r--r-- 1 root root 1339 2008-01-17 09:07 AUTHORS > -rwxr-xr-x 1 root root 137 2008-01-17 09:07 autogen.sh > drwxr-xr-x 2 root root 4096 2008-01-17 13:32 autom4te.cache > -rw-r--r-- 1 root root 710 2008-01-17 09:07 ChangeLog > -rw-r--r-- 1 root root 143083 2008-01-17 09:07 ChangeLog.ext-trees > -rwxr-xr-x 1 root root 44595 2007-08-29 13:28 config.guess > -rw-r--r-- 1 root root 13102 2008-01-17 13:32 config.h > -rw-r--r-- 1 root root 12374 2008-01-17 13:32 config.h.in > -rw-r--r-- 1 root root 124288 2008-01-17 13:32 config.log > -rwxr-xr-x 1 root root 49016 2008-01-17 13:32 config.status > -rwxr-xr-x 1 root root 32726 2007-08-29 13:28 config.sub > -rwxr-xr-x 1 root root 939768 2008-01-17 13:32 configure > -rw-r--r-- 1 root root 8895 2008-01-17 09:07 configure.ac > -rw-r--r-- 1 root root 26423 2008-01-17 09:07 COPYING > -rw-r--r-- 1 root root 11453 2008-01-17 09:07 COPYRIGHTS > drwxr-xr-x 7 root root 4096 2008-01-17 09:04 _darcs > -rwxr-xr-x 1 root root 17574 2008-01-17 13:32 depcomp > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 docs > -rwxr-xr-x 1 root root 13184 2008-01-17 13:32 install-sh > drwxr-xr-x 22 root root 4096 2008-01-17 13:37 libsofia-sip-ua > drwxr-xr-x 5 root root 4096 2008-01-17 13:37 libsofia-sip-ua-glib > -rwxr-xr-x 1 root root 227856 2008-01-17 13:32 libtool > -rwxr-xr-x 1 root root 198965 2007-08-29 13:28 ltmain.sh > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 m4 > -rw-r--r-- 1 root root 27532 2008-01-17 13:32 Makefile > -rw-r--r-- 1 root root 2071 2008-01-17 09:07 Makefile.am > -rw-r--r-- 1 root root 28272 2008-01-17 13:32 Makefile.in > drwxr-xr-x 3 root root 4096 2008-01-17 13:47 man > -rwxr-xr-x 1 root root 11135 2008-01-17 13:32 missing > drwxr-xr-x 5 root root 4096 2008-01-17 13:32 open_c > drwxr-xr-x 2 root root 4096 2008-01-17 13:32 packages > -rw-r--r-- 1 root root 1943 2008-01-17 09:07 README > -rw-r--r-- 1 root root 4191 2008-01-17 09:07 README.developers > -rw-r--r-- 1 root root 2456 2008-01-17 09:07 RELEASE > -rw-r--r-- 1 root root 2456 2008-01-17 09:07 RELEASE.template > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 rules > drwxr-xr-x 2 root root 4096 2008-01-17 09:07 scripts > -rw-r--r-- 1 root root 23 2008-01-17 13:32 stamp-h1 > drwxr-xr-x 3 root root 4096 2008-01-17 13:32 tests > -rw-r--r-- 1 root root 933 2008-01-17 09:07 TODO > drwxr-xr-x 4 root root 4096 2008-01-17 13:37 utils > drwxr-xr-x 8 root root 4096 2008-01-17 13:32 win32 > > regards, > > Tola > > > > > -----Original Message----- > From: sip...@li... > [mailto:sip...@li...] On Behalf Of Ge@@ru > Sent: 17 January 2008 07:03 > To: wangdq > Cc: sip...@li... > Subject: Re: [Sipdht-devel] how to get sofia-sip-1.12.7devel > > You must get darcs sources from repository. See Develepment README > ( http://sofia-sip.org/repos/sofia-sip/README.developers ) > > > Bye > > Ge@@ru > > On Thu, 2008-01-17 at 13:37 +0800, wangdq wrote: > > hi: > > how to ge sofia-sip-1.12.7devel ? > > > > > ------------------------------------------------------------------------ > - > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ Sipdht-devel mailing > list Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > > > ------------------------------------------------------------------------ > - > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Sipdht-devel mailing list > Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Sipdht-devel mailing list > Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel > -- Sergi |
From: Oredope, A. <ao...@es...> - 2008-01-17 15:35:31
|
I have tried downloading the development sources from darcs using the sofia-sip repo but there are no development packages there. I installed the version in the darcs but libxpp is asking for sofia-sip-1.12.7devel How can I go about this? The list of the darcs is shown below -rw-r--r-- 1 root root 273133 2008-01-17 13:32 aclocal.m4 -rw-r--r-- 1 root root 1339 2008-01-17 09:07 AUTHORS -rwxr-xr-x 1 root root 137 2008-01-17 09:07 autogen.sh drwxr-xr-x 2 root root 4096 2008-01-17 13:32 autom4te.cache -rw-r--r-- 1 root root 710 2008-01-17 09:07 ChangeLog -rw-r--r-- 1 root root 143083 2008-01-17 09:07 ChangeLog.ext-trees -rwxr-xr-x 1 root root 44595 2007-08-29 13:28 config.guess -rw-r--r-- 1 root root 13102 2008-01-17 13:32 config.h -rw-r--r-- 1 root root 12374 2008-01-17 13:32 config.h.in -rw-r--r-- 1 root root 124288 2008-01-17 13:32 config.log -rwxr-xr-x 1 root root 49016 2008-01-17 13:32 config.status -rwxr-xr-x 1 root root 32726 2007-08-29 13:28 config.sub -rwxr-xr-x 1 root root 939768 2008-01-17 13:32 configure -rw-r--r-- 1 root root 8895 2008-01-17 09:07 configure.ac -rw-r--r-- 1 root root 26423 2008-01-17 09:07 COPYING -rw-r--r-- 1 root root 11453 2008-01-17 09:07 COPYRIGHTS drwxr-xr-x 7 root root 4096 2008-01-17 09:04 _darcs -rwxr-xr-x 1 root root 17574 2008-01-17 13:32 depcomp drwxr-xr-x 2 root root 4096 2008-01-17 09:07 docs -rwxr-xr-x 1 root root 13184 2008-01-17 13:32 install-sh drwxr-xr-x 22 root root 4096 2008-01-17 13:37 libsofia-sip-ua drwxr-xr-x 5 root root 4096 2008-01-17 13:37 libsofia-sip-ua-glib -rwxr-xr-x 1 root root 227856 2008-01-17 13:32 libtool -rwxr-xr-x 1 root root 198965 2007-08-29 13:28 ltmain.sh drwxr-xr-x 2 root root 4096 2008-01-17 09:07 m4 -rw-r--r-- 1 root root 27532 2008-01-17 13:32 Makefile -rw-r--r-- 1 root root 2071 2008-01-17 09:07 Makefile.am -rw-r--r-- 1 root root 28272 2008-01-17 13:32 Makefile.in drwxr-xr-x 3 root root 4096 2008-01-17 13:47 man -rwxr-xr-x 1 root root 11135 2008-01-17 13:32 missing drwxr-xr-x 5 root root 4096 2008-01-17 13:32 open_c drwxr-xr-x 2 root root 4096 2008-01-17 13:32 packages -rw-r--r-- 1 root root 1943 2008-01-17 09:07 README -rw-r--r-- 1 root root 4191 2008-01-17 09:07 README.developers -rw-r--r-- 1 root root 2456 2008-01-17 09:07 RELEASE -rw-r--r-- 1 root root 2456 2008-01-17 09:07 RELEASE.template drwxr-xr-x 2 root root 4096 2008-01-17 09:07 rules drwxr-xr-x 2 root root 4096 2008-01-17 09:07 scripts -rw-r--r-- 1 root root 23 2008-01-17 13:32 stamp-h1 drwxr-xr-x 3 root root 4096 2008-01-17 13:32 tests -rw-r--r-- 1 root root 933 2008-01-17 09:07 TODO drwxr-xr-x 4 root root 4096 2008-01-17 13:37 utils drwxr-xr-x 8 root root 4096 2008-01-17 13:32 win32 regards, Tola -----Original Message----- From: sip...@li... [mailto:sip...@li...] On Behalf Of Ge@@ru Sent: 17 January 2008 07:03 To: wangdq Cc: sip...@li... Subject: Re: [Sipdht-devel] how to get sofia-sip-1.12.7devel You must get darcs sources from repository. See Develepment README ( http://sofia-sip.org/repos/sofia-sip/README.developers ) Bye Ge@@ru On Thu, 2008-01-17 at 13:37 +0800, wangdq wrote: > hi: > how to ge sofia-sip-1.12.7devel ? >=20 > ------------------------------------------------------------------------ - > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ Sipdht-devel mailing list Sip...@li... https://lists.sourceforge.net/lists/listinfo/sipdht-devel ------------------------------------------------------------------------ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Sipdht-devel mailing list Sip...@li... https://lists.sourceforge.net/lists/listinfo/sipdht-devel |
From: Ge@@ru <ge...@gm...> - 2008-01-17 07:03:10
|
You must get darcs sources from repository. See Develepment README ( http://sofia-sip.org/repos/sofia-sip/README.developers ) Bye Ge@@ru On Thu, 2008-01-17 at 13:37 +0800, wangdq wrote: > hi: > how to ge sofia-sip-1.12.7devel ? > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ Sipdht-devel mailing list Sip...@li... https://lists.sourceforge.net/lists/listinfo/sipdht-devel |
From: wangdq <wa...@go...> - 2008-01-17 05:38:41
|
hi: how to ge sofia-sip-1.12.7devel ? |
From: Enrico M. <enr...@te...> - 2008-01-16 10:09:32
|
Oredope, Adetola wrote: > We are currently using sipdht for some experiments in our lab, but we > are now interested in studying the effects of churn on the dht. > > Is there a way of finding/measuring how long it takes the overlay to > stabilize in sipdht or sipdht2? Well, in the sipdht2 tree there's a simulator which may help you to setup virtually any testing scenario. However, even if it "visually" tells you when the overlay is stable, so far there's no automated means to detect it. > Although we have not installed sipdht2 at our end but apart from the CAN > overlay, are there really any advantages of sipdht2 over sipdht? At http://sipdht.sf.net/sipdht2/ there's a short description of what sipdht2 is. Basically, main advantages are complete specifications, data replication, NAT traversal support, a visual simulator and a fancy GUI. Plus it is the version under development and the only one you may find some support for. -- Ciao, Enrico |
From: Oredope, A. <ao...@es...> - 2008-01-16 09:32:21
|
Thanks for your quick response... So is there a way I can collect data on effects of churn in sipdht2 Regards, Tola -----Original Message----- From: Ge@@ru [mailto:ge...@gm...]=20 Sent: 16 January 2008 09:28 To: Oredope, Adetola Cc: Sipdht2 devel Subject: Re: [Sipdht-devel] Stabilisation Updates Sipdht is an old tree that isn't supported, use of sipdht2 is advised because there are a lot of bug fix and improvements. Ge@@ru On Wed, 2008-01-16 at 09:16 +0000, Oredope, Adetola wrote: > Hello Everyone, >=20 > We are currently using sipdht for some experiments in our lab, but we > are now interested in studying the effects of churn on the dht. > =20 > Is there a way of finding/measuring how long it takes the overlay to > stabilize in sipdht or sipdht2?=20 >=20 > Although we have not installed sipdht2 at our end but apart from the CAN > overlay, are there really any advantages of sipdht2 over sipdht? >=20 > I look forward to hearing from you all. >=20 > Regards, >=20 > Tola >=20 > ------------------------------------------------------------------------ - > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Sipdht-devel mailing list > Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel |
From: Ge@@ru <ge...@gm...> - 2008-01-16 09:28:25
|
Sipdht is an old tree that isn't supported, use of sipdht2 is advised because there are a lot of bug fix and improvements. Ge@@ru On Wed, 2008-01-16 at 09:16 +0000, Oredope, Adetola wrote: > Hello Everyone, > > We are currently using sipdht for some experiments in our lab, but we > are now interested in studying the effects of churn on the dht. > > Is there a way of finding/measuring how long it takes the overlay to > stabilize in sipdht or sipdht2? > > Although we have not installed sipdht2 at our end but apart from the CAN > overlay, are there really any advantages of sipdht2 over sipdht? > > I look forward to hearing from you all. > > Regards, > > Tola > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Sipdht-devel mailing list > Sip...@li... > https://lists.sourceforge.net/lists/listinfo/sipdht-devel |
From: Oredope, A. <ao...@es...> - 2008-01-16 09:17:08
|
Hello Everyone, We are currently using sipdht for some experiments in our lab, but we are now interested in studying the effects of churn on the dht. =20 Is there a way of finding/measuring how long it takes the overlay to stabilize in sipdht or sipdht2?=20 Although we have not installed sipdht2 at our end but apart from the CAN overlay, are there really any advantages of sipdht2 over sipdht? I look forward to hearing from you all. Regards, Tola |
From: Enrico M. <enr...@te...> - 2008-01-11 09:37:53
|
naveen t wrote: > I successfully installed libsipdht library. After > compiling sipdht-tools, i tried starting instances of > sipdht peer nodes which form the overlay network > according to these instructions in the SIP DHT > webpage. > > deploy some nodes participating in the DHT: > $ sipdht -p 6070 -s 10 > $ sipdht -p 6080 -s 10 sip:localhost:6070 > $ sipdht -p 6090 -s 10 sip:localhost:6080 It seems that you are using quite an outdated version; during the last year the efforts have focused on version2 (which btw should have been the only one available for download on sf page). However, if I recall correctly, at some point there where problems using the "localhost" name in URIs. I suggest to try with something like: $ sipdht -a 127.0.0.1 -p 6070 -s 10 $ sipdht -a 127.0.0.1 -p 6080 -s 10 sip:127.0.0.1:6070 $ sipdht -a 127.0.0.1 -p 6090 -s 10 sip:127.0.0.1:6080 I also suggest - even more warmly - to give a try to the new version available from http://sipdht.sourceforge.net/sipdht2/index.html -- Ciao, Enrico |
From: naveen t <nav...@ya...> - 2008-01-11 08:53:42
|
Hi, I successfully installed libsipdht library. After compiling sipdht-tools, i tried starting instances of sipdht peer nodes which form the overlay network according to these instructions in the SIP DHT webpage. deploy some nodes participating in the DHT: $ sipdht -p 6070 -s 10 $ sipdht -p 6080 -s 10 sip:localhost:6070 $ sipdht -p 6090 -s 10 sip:localhost:6080 When i start the 2nd node, it doesnt connect to the node running on port 6070 and hence starts as a standalone node. Am i missing any steps or configurations? This is the unexpected output message that i get: navt@viduratha:~/sipdht-tools-0.4.1$ sipdht -p 6090 -s 10 sip:localhost:6070 Trying with node sip:localhost:6070... callback failure invoked: 0 Started standalone Could someone please clarify what could be wrong? Am i missing out on some config. Appreciate a reply, regards, Naveen Get the freedom to save as many mails as you wish. To know how, go to http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html |
From: stefano <st....@gm...> - 2008-01-10 13:53:45
|
Hello, we have just released new versions of sipdht2 programs featuring public peers discovery through OPTIONS, multiple registrations and un-REGISTER when one of these public peers dies. Cheers, Stefano |