You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
|
Aug
(7) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(7) |
2006 |
Jan
(1) |
Feb
(2) |
Mar
(3) |
Apr
(3) |
May
(5) |
Jun
(1) |
Jul
|
Aug
(2) |
Sep
(4) |
Oct
(17) |
Nov
(18) |
Dec
(1) |
2007 |
Jan
|
Feb
|
Mar
(8) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(6) |
Dec
(1) |
2008 |
Jan
(17) |
Feb
(20) |
Mar
(8) |
Apr
(8) |
May
(10) |
Jun
(4) |
Jul
(5) |
Aug
(6) |
Sep
(9) |
Oct
(19) |
Nov
(4) |
Dec
(35) |
2009 |
Jan
(40) |
Feb
(16) |
Mar
(7) |
Apr
(6) |
May
|
Jun
(5) |
Jul
(5) |
Aug
(4) |
Sep
(1) |
Oct
(2) |
Nov
(15) |
Dec
(15) |
2010 |
Jan
(5) |
Feb
(20) |
Mar
(12) |
Apr
|
May
(2) |
Jun
(4) |
Jul
|
Aug
(11) |
Sep
(1) |
Oct
(1) |
Nov
(3) |
Dec
|
2011 |
Jan
(8) |
Feb
(19) |
Mar
|
Apr
(12) |
May
(7) |
Jun
(8) |
Jul
|
Aug
(1) |
Sep
(21) |
Oct
(7) |
Nov
(4) |
Dec
|
2012 |
Jan
(3) |
Feb
(25) |
Mar
(8) |
Apr
(10) |
May
|
Jun
(14) |
Jul
(5) |
Aug
(12) |
Sep
(3) |
Oct
(14) |
Nov
|
Dec
|
2013 |
Jan
(10) |
Feb
(4) |
Mar
(10) |
Apr
(14) |
May
(6) |
Jun
(13) |
Jul
(37) |
Aug
(20) |
Sep
(11) |
Oct
(1) |
Nov
(34) |
Dec
|
2014 |
Jan
(8) |
Feb
(26) |
Mar
(24) |
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(28) |
Oct
(4) |
Nov
(4) |
Dec
(2) |
2015 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(13) |
Jul
|
Aug
(3) |
Sep
(8) |
Oct
(11) |
Nov
(16) |
Dec
|
2016 |
Jan
|
Feb
(6) |
Mar
|
Apr
(9) |
May
(23) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2017 |
Jan
|
Feb
|
Mar
|
Apr
(7) |
May
(3) |
Jun
|
Jul
(3) |
Aug
|
Sep
(8) |
Oct
|
Nov
|
Dec
(3) |
2018 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
(4) |
Feb
|
Mar
(2) |
Apr
(6) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
(31) |
May
|
Jun
|
Jul
|
Aug
(7) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2021 |
Jan
(2) |
Feb
(2) |
Mar
(5) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
(1) |
10
(2) |
11
|
12
(3) |
13
|
14
|
15
(1) |
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
(1) |
26
|
27
|
28
|
29
|
30
|
31
|
From: Camille <ca...@ne...> - 2007-03-25 10:10:58
|
Hi, I am using multiple servers to process data incoming on multiple ports. The problem however, is that when a new server is created the lo_client_sockets data structure is updated with new socket information. The consequence is that clients that share the same process as the server that try to send data (over UDP in my case), are using a bad socket because the data structure has been updated with a wrong information. To solve this problem I change the code in server.c at line 286 to this: if (proto == LO_UDP) { if (lo_client_sockets.udp == -1) lo_client_sockets.udp = s->socket; } else if (proto == LO_TCP) { if (lo_client_sockets.tcp == -1) lo_client_sockets.tcp = s->socket; } I don't think this fix is correct, but I just wanted to share the information. Best, -cam |
From: Nicholas J H. <nj...@ec...> - 2007-03-15 16:01:42
|
Hi, Thank you all for your feedback. I have incorporated fixes for the =20 warnings in a new version: http://www.ecs.soton.ac.uk/~njh/liblo/liblo-0.24pre2.tar.gz I will release this as version 0.24 tomorrow, unless anyone has any =20 problems with it. Thanks, nick. On 10 Mar 2007, at 17:50, Dave Robillard wrote: > On Fri, 2007-03-09 at 21:13 +0000, Nicholas J Humfrey wrote: >> Hi, >> >> Sorry it has been so long since the last release. I have been through >> the Bug Tracker on SourceForge and fixed most of the problems there: >> >> * Changed lo_blob_new() to take const void* (thanks to Lars = Luthman) >> * Disable getnameinfo() method of getting hostname, when IPv6 is >> disabled >> * Unlink Unix server socket when it is close (thanks to Dominic =20= >> Sacr=E9) >> * Checks size of unix socket path properly >> * Now accepts unix socket format osc.unix://localhost/tmp/=20 >> mysocket.sock >> * Added lo_server_thread_new_with_proto(), as suggested by Dave >> Robillard >> * Applied patch from Aron Stansvik to fix bug with = FreeBSD/NetBSD >> systems >> * Removed freeaddrinfo() from resolve_address() error case = (thanks >> to Anthony Green) >> * Only call connect() for TCP sessions (thanks to Roger B. =20 >> Dannenberg) >> * Applied lo_address_get_url() patch from Sze'kelyi Szabolcs >> * Added lo_server_get_protocol() and lo_address_get_protocol() >> * Added tests for lo_address_get_* tests to test tool >> >> A pre-release of version 0.24 is available here: >> http://www.ecs.soton.ac.uk/~njh/liblo/liblo-0.24pre1.tar.gz >> >> I have also released a new version of the perl bindings on CPAN: >> http://search.cpan.org/~njh/Net-LibLO-0.06/ >> >> It would be great if I could get some feedback before I make the 0.24 >> release. In particular relating to the bug fixes above, and also >> confirm that I didn't break binary compatibility. >> >> >> Thanks, > > Working fine here (havn't tested the TCP stuff though). No more big > delay on lo_server_new, nice. > > A few warnings on 64-bit: > > address.c:148: warning: cast from pointer to integer of different size > > message.c:413: warning: format '%lld' expects type 'long long int', =20= > but > argument 2 has type 'int64_t' > > pattern_match.c:220: warning: value computed is not used > > testlo.c:180: warning: format '%llX' expects type 'long long unsigned > int', but argument 3 has type 'uint64_t' > > Cheers, > > -DR- > > > > ----------------------------------------------------------------------=20= > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to =20 > share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?=20 > page=3Djoin.php&p=3Dsourceforge&CID=3DDEVDEV > _______________________________________________ > liblo-devel mailing list > lib...@li... > https://lists.sourceforge.net/lists/listinfo/liblo-devel |
From: daniel p. <d_...@gm...> - 2007-03-12 14:33:35
|
this version works well, thank you very much. bests, daniel Am 12.03.2007 um 15:01 schrieb Camille: > Hello, > > You should try the 0.24pre1 version. > From Nicholas Humfrey: > > >> A pre-release of version 0.24 is available here: >> http://www.ecs.soton.ac.uk/~njh/liblo/liblo-0.24pre1.tar.gz > > > best, > -cam > > > On 12 mars 07, at 15:47, daniel plewe wrote: > >> hi >> >> i am trying to port an open sound controlled application to mac osx >> (from linux) . this application is part of the swonder project. i am >> working with liblo and have a problem on the mac osx platform: >> "OSC error 56: Socket is already connected" >> >> at the same time there is no other server or client running. >> >> i am getting this error just by executing the ./example_client in >> liblo's examples folder. >> >> i compiled without any options. the liblo version is 0.23. osx is >> 10.4.8. >> >> does anyone has any ideas? thanks in advance >> >> daniel >> >> --------------------------------------------------------------------- >> - >> --- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share your >> opinions on IT & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php? >> page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> liblo-devel mailing list >> lib...@li... >> https://lists.sourceforge.net/lists/listinfo/liblo-devel > > > > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > liblo-devel mailing list > lib...@li... > https://lists.sourceforge.net/lists/listinfo/liblo-devel |
From: Camille <ca...@ne...> - 2007-03-12 14:02:12
|
Hello, You should try the 0.24pre1 version. From Nicholas Humfrey: > A pre-release of version 0.24 is available here: > http://www.ecs.soton.ac.uk/~njh/liblo/liblo-0.24pre1.tar.gz best, -cam On 12 mars 07, at 15:47, daniel plewe wrote: > hi > > i am trying to port an open sound controlled application to mac osx > (from linux) . this application is part of the swonder project. i am > working with liblo and have a problem on the mac osx platform: > "OSC error 56: Socket is already connected" > > at the same time there is no other server or client running. > > i am getting this error just by executing the ./example_client in > liblo's examples folder. > > i compiled without any options. the liblo version is 0.23. osx is > 10.4.8. > > does anyone has any ideas? thanks in advance > > daniel > > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > liblo-devel mailing list > lib...@li... > https://lists.sourceforge.net/lists/listinfo/liblo-devel |
From: daniel p. <d_...@gm...> - 2007-03-12 13:47:18
|
hi i am trying to port an open sound controlled application to mac osx (from linux) . this application is part of the swonder project. i am working with liblo and have a problem on the mac osx platform: "OSC error 56: Socket is already connected" at the same time there is no other server or client running. i am getting this error just by executing the ./example_client in liblo's examples folder. i compiled without any options. the liblo version is 0.23. osx is 10.4.8. does anyone has any ideas? thanks in advance daniel |
From: Camille <ca...@ne...> - 2007-03-10 19:13:22
|
Hi, It seems everything is working fine on my side. I can't tell about binary compatibility though. (built on Mac OS X 10.4.8) -cam On 9 mars 07, at 22:13, Nicholas J Humfrey wrote: > Hi, > > Sorry it has been so long since the last release. I have been through > the Bug Tracker on SourceForge and fixed most of the problems there: > > * Changed lo_blob_new() to take const void* (thanks to Lars = Luthman) > * Disable getnameinfo() method of getting hostname, when IPv6 is > disabled > * Unlink Unix server socket when it is close (thanks to Dominic =20= > Sacr=E9) > * Checks size of unix socket path properly > * Now accepts unix socket format osc.unix://localhost/tmp/=20 > mysocket.sock > * Added lo_server_thread_new_with_proto(), as suggested by Dave > Robillard > * Applied patch from Aron Stansvik to fix bug with = FreeBSD/NetBSD > systems > * Removed freeaddrinfo() from resolve_address() error case = (thanks > to Anthony Green) > * Only call connect() for TCP sessions (thanks to Roger B. =20 > Dannenberg) > * Applied lo_address_get_url() patch from Sze'kelyi Szabolcs > * Added lo_server_get_protocol() and lo_address_get_protocol() > * Added tests for lo_address_get_* tests to test tool > > A pre-release of version 0.24 is available here: > http://www.ecs.soton.ac.uk/~njh/liblo/liblo-0.24pre1.tar.gz > > I have also released a new version of the perl bindings on CPAN: > http://search.cpan.org/~njh/Net-LibLO-0.06/ > > It would be great if I could get some feedback before I make the 0.24 > release. In particular relating to the bug fixes above, and also > confirm that I didn't break binary compatibility. > > > Thanks, > > nick. > > > ----------------------------------------------------------------------=20= > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to =20 > share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?=20 > page=3Djoin.php&p=3Dsourceforge&CID=3DDEVDEV > _______________________________________________ > liblo-devel mailing list > lib...@li... > https://lists.sourceforge.net/lists/listinfo/liblo-devel |
From: Dave R. <dro...@co...> - 2007-03-10 17:50:28
|
On Fri, 2007-03-09 at 21:13 +0000, Nicholas J Humfrey wrote: > Hi, > > Sorry it has been so long since the last release. I have been through > the Bug Tracker on SourceForge and fixed most of the problems there: > > * Changed lo_blob_new() to take const void* (thanks to Lars Luthman) > * Disable getnameinfo() method of getting hostname, when IPv6 is > disabled > * Unlink Unix server socket when it is close (thanks to Dominic Sacré) > * Checks size of unix socket path properly > * Now accepts unix socket format osc.unix://localhost/tmp/mysocket.sock > * Added lo_server_thread_new_with_proto(), as suggested by Dave > Robillard > * Applied patch from Aron Stansvik to fix bug with FreeBSD/NetBSD > systems > * Removed freeaddrinfo() from resolve_address() error case (thanks > to Anthony Green) > * Only call connect() for TCP sessions (thanks to Roger B. Dannenberg) > * Applied lo_address_get_url() patch from Sze'kelyi Szabolcs > * Added lo_server_get_protocol() and lo_address_get_protocol() > * Added tests for lo_address_get_* tests to test tool > > A pre-release of version 0.24 is available here: > http://www.ecs.soton.ac.uk/~njh/liblo/liblo-0.24pre1.tar.gz > > I have also released a new version of the perl bindings on CPAN: > http://search.cpan.org/~njh/Net-LibLO-0.06/ > > It would be great if I could get some feedback before I make the 0.24 > release. In particular relating to the bug fixes above, and also > confirm that I didn't break binary compatibility. > > > Thanks, Working fine here (havn't tested the TCP stuff though). No more big delay on lo_server_new, nice. A few warnings on 64-bit: address.c:148: warning: cast from pointer to integer of different size message.c:413: warning: format '%lld' expects type 'long long int', but argument 2 has type 'int64_t' pattern_match.c:220: warning: value computed is not used testlo.c:180: warning: format '%llX' expects type 'long long unsigned int', but argument 3 has type 'uint64_t' Cheers, -DR- |
From: Nicholas J H. <nj...@ec...> - 2007-03-09 21:14:02
|
Hi, Sorry it has been so long since the last release. I have been through =20= the Bug Tracker on SourceForge and fixed most of the problems there: * Changed lo_blob_new() to take const void* (thanks to Lars = Luthman) * Disable getnameinfo() method of getting hostname, when IPv6 is = =20 disabled * Unlink Unix server socket when it is close (thanks to Dominic = Sacr=E9) * Checks size of unix socket path properly * Now accepts unix socket format = osc.unix://localhost/tmp/mysocket.sock * Added lo_server_thread_new_with_proto(), as suggested by Dave =20= Robillard * Applied patch from Aron Stansvik to fix bug with = FreeBSD/NetBSD =20 systems * Removed freeaddrinfo() from resolve_address() error case = (thanks =20 to Anthony Green) * Only call connect() for TCP sessions (thanks to Roger B. = Dannenberg) * Applied lo_address_get_url() patch from Sze'kelyi Szabolcs * Added lo_server_get_protocol() and lo_address_get_protocol() * Added tests for lo_address_get_* tests to test tool A pre-release of version 0.24 is available here: http://www.ecs.soton.ac.uk/~njh/liblo/liblo-0.24pre1.tar.gz I have also released a new version of the perl bindings on CPAN: http://search.cpan.org/~njh/Net-LibLO-0.06/ It would be great if I could get some feedback before I make the 0.24 =20= release. In particular relating to the bug fixes above, and also =20 confirm that I didn't break binary compatibility. Thanks, nick. |