cannam@89
|
1 2009-03-07 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
2 * Fix some typos, grammar, and links in the documentation.
|
cannam@89
|
3 * Remove TCP from TODO list.
|
cannam@89
|
4 * Add recent contributors to the AUTHORS list.
|
cannam@89
|
5 * Add previous release notes to the NEWS file.
|
cannam@89
|
6 * Add note about MSVC in README.
|
cannam@89
|
7 * Release 0.26.
|
cannam@89
|
8
|
cannam@89
|
9 2009-03-06 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
10 * Add a return value to lo_bundle_add_message().
|
cannam@89
|
11 * Avoid pointer arithmetic on void* types for compilers that can't handle it.
|
cannam@89
|
12 * Move all local variable declarations to the top of the scope.
|
cannam@89
|
13 * Conditionally avoid the use of variable-argument macros if not GCC.
|
cannam@89
|
14 * Fix multicast on Windows: join multicast group after bind() instead of before.
|
cannam@89
|
15 * Avoid the use of C99 struct literals when giving timetag arguments.
|
cannam@89
|
16 * Add premake4, used to generate MSVC project/solution files.
|
cannam@89
|
17 * Add numerous typical kludges necessary to cover differences in MSVC.
|
cannam@89
|
18 * Use log() instead of a while loop to calculate new data size.
|
cannam@89
|
19 * Add return values for all functions that can potentially fail.
|
cannam@89
|
20 * Add premake4-related files to the dist build.
|
cannam@89
|
21
|
cannam@89
|
22 2009-02-17 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
23 * For multicast, enable SO_REUSEPORT as well as SO_REUSEADDR. (Mike Wozniewski)
|
cannam@89
|
24
|
cannam@89
|
25 2009-02-12 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
26 * Fix the definition of LO_TT_IMMEDIATE per the OSC spec. (Dominic Sacré)
|
cannam@89
|
27
|
cannam@89
|
28 2009-02-01 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
29 * Add function lo_message_get_timestamp(). (Alex McLean)
|
cannam@89
|
30 * Fix magic constant in lo_timetag_diff. (Dominic Sacré)
|
cannam@89
|
31 * Bump the LO_SO_VERSION version major number to resolve ABI
|
cannam@89
|
32 incompatibilities with previous versions. In particular, the
|
cannam@89
|
33 addition of 'const' to an argument of lo_blob_new() in r80
|
cannam@89
|
34 constituted an API add and removal, hence the reset of the 3rd
|
cannam@89
|
35 number ('age') according to the libtool manual. (SS)
|
cannam@89
|
36
|
cannam@89
|
37 2009-01-04 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
38 * Add checks to configure.ac for select() and poll().
|
cannam@89
|
39 * Use inet_addr if inet_aton is not available. (i.e., on Windows)
|
cannam@89
|
40 * Retry a TCP connection once if it failed to connect on send.
|
cannam@89
|
41 * Remove useless conditional call to freeaddrinfo().
|
cannam@89
|
42 * Only implement gai_strerrorA if gai_strerror was not already defined.
|
cannam@89
|
43 * Make the TCP protocol retain session information for multiple connections.
|
cannam@89
|
44
|
cannam@89
|
45 2008-12-23 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
46 * Added a function called lo_server_wait() which waits for a message to be received.
|
cannam@89
|
47
|
cannam@89
|
48 2008-11-23 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
49 * Use the \internal Doxygen command to hide internal functions.
|
cannam@89
|
50
|
cannam@89
|
51 2008-10-11 Kentaro Fukuchi <fukuchi@megaui.net>
|
cannam@89
|
52 * lo_url_get_protocol_id() has been added.
|
cannam@89
|
53 * lo_address_new_with_proto() has been added.
|
cannam@89
|
54 * Changed lo_address_new_from_url() to use lo_url_get_protocol_id().
|
cannam@89
|
55
|
cannam@89
|
56 2008-10-09 Kentaro Fukuchi <fukuchi@megaui.net>
|
cannam@89
|
57 * src/tools/oscsend.c: Fixed compile-time error on OS X.
|
cannam@89
|
58 (thanks to Koichiro Ozaki)
|
cannam@89
|
59
|
cannam@89
|
60 2008-10-07 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
61 * Move lo_arg_size(), lo_get_path(), lo_arg_host/network_endian() back to lo_lowlevel.h.
|
cannam@89
|
62 * Expose the lo_server_dispatch_data() function as public.
|
cannam@89
|
63 * Fix zero-padding of path and type strings in lo_message_deserialise().
|
cannam@89
|
64
|
cannam@89
|
65 2008-09-07 Kentaro Fukuchi <fukuchi@megaui.net>
|
cannam@89
|
66 * Memory leak in lo_address_new_from_url() has been fixed.
|
cannam@89
|
67 * Memory leak in dispatch_method() has been fixed.
|
cannam@89
|
68 * Fix a typo and some missing free() in testlo.c.
|
cannam@89
|
69
|
cannam@89
|
70 2008-09-04 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
71 * Change license of LibLo to LGPL 2.1 or later.
|
cannam@89
|
72 (With permission of all authors.)
|
cannam@89
|
73
|
cannam@89
|
74 2008-07-11 Kentaro Fukuchi <fukuchi@megaui.net>
|
cannam@89
|
75 * Some error checks have been added.
|
cannam@89
|
76 * oscsend now uses strtod() instead of strtof(). strtof of glibc returned
|
cannam@89
|
77 buggy results when --std=c99 is not given. (strtof is described in C99)
|
cannam@89
|
78
|
cannam@89
|
79 2008-06-18 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
80 * Update AUTHORS
|
cannam@89
|
81 * Release version 0.25
|
cannam@89
|
82
|
cannam@89
|
83 2008-06-05 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
84 * Fix autogen.sh: Use glibtoolize if it exists, for OS X.
|
cannam@89
|
85 * Fix undefined MSG_NOSIGNAL in testlo.c.
|
cannam@89
|
86 * Fix warning on lo_message_deserialize().
|
cannam@89
|
87
|
cannam@89
|
88 2008-05-05 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
89 * Fix invalid pointer in lo_server_del_method() when doing pattern matching. (Camille Troillard)
|
cannam@89
|
90
|
cannam@89
|
91 2008-04-28 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
92 * Add support for multicast groups to LibLo.
|
cannam@89
|
93 * Add test case for sending a crafted packet that would crash a lo_server without validation.
|
cannam@89
|
94 * Make validation-related functions internal to liblo.
|
cannam@89
|
95 * Add server input validation along with a function to deserialise an OSC message. (Chris Hixon)
|
cannam@89
|
96 * Fix bad socket number in lo_client_sockets when a server is freed.
|
cannam@89
|
97
|
cannam@89
|
98 2008-04-21 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
99 * Added Daniel Lacroix's patch for level 2 broadcast support.
|
cannam@89
|
100 * Use resolved IP address to detect broadcast address.
|
cannam@89
|
101
|
cannam@89
|
102 2008-02-25 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
103 * Fix bug where curly brackets didn't match the last item in the comma-separated list.
|
cannam@89
|
104
|
cannam@89
|
105 2008-02-20 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
106 * Added lo_bundle_free_messages() to free a bundle and the messages it points to. (Kentaro Fukuchi)
|
cannam@89
|
107
|
cannam@89
|
108 2008-01-27 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
109 * Fix for lo_message_add(), wrong argument order for lo_message_add_varargs_internal(). (Dave Robillard)
|
cannam@89
|
110 * Added test case for lo_message_add().
|
cannam@89
|
111
|
cannam@89
|
112 2008-01-20 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
113
|
cannam@89
|
114 * Added lo_message_add_varargs() to play well with C functions taking a variable number of arguments. (Dave Robillard)
|
cannam@89
|
115 * Avoid unnecessary repetitive reallocation on lo_message_add_*(). (Dave Robillard)
|
cannam@89
|
116 * Fixed errors related to 64-bit in packing blob and MIDI messages. (Dave Robillard)
|
cannam@89
|
117
|
cannam@89
|
118 2008-01-13 Stephen Sinclair <radarsat1@gmail.com>
|
cannam@89
|
119
|
cannam@89
|
120 * Fixed index increment in sendosc.c for string and symbol types
|
cannam@89
|
121
|
cannam@89
|
122 2008-01-12 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
123
|
cannam@89
|
124 * Added tools from Kentaro Fukuchi
|
cannam@89
|
125
|
cannam@89
|
126 2007-03-19 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
127
|
cannam@89
|
128 * Applied patch from Chris Hixon to check for buffer overflows
|
cannam@89
|
129
|
cannam@89
|
130 2007-03-16 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
131
|
cannam@89
|
132 * Fixed several compiler warnings
|
cannam@89
|
133 * Changed address for package bug reports
|
cannam@89
|
134 * Released version 0.24
|
cannam@89
|
135
|
cannam@89
|
136 2007-03-09 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
137
|
cannam@89
|
138 * Changed lo_blob_new() to take const void* (thanks to Lars Luthman)
|
cannam@89
|
139 * Disable getnameinfo() method of getting hostname, when IPv6 is disabled
|
cannam@89
|
140 * Unlink Unix server socket when it is close (thanks to Dominic Sacr)
|
cannam@89
|
141 * Checks size of unix socket path properly
|
cannam@89
|
142 * Now accepts unix socket format osc.unix://localhost/tmp/mysocket.sock
|
cannam@89
|
143 * Released version 0.24pre1
|
cannam@89
|
144
|
cannam@89
|
145 2007-03-08 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
146
|
cannam@89
|
147 * Added lo_server_thread_new_with_proto(), as suggested by Dave Robillard
|
cannam@89
|
148 * Applied patch from Aron Stansvik to fix bug with FreeBSD/NetBSD systems
|
cannam@89
|
149 * Removed freeaddrinfo() from resolve_address() error case (thanks to Anthony Green)
|
cannam@89
|
150 * Only call connect() for TCP sessions (thanks to Roger B. Dannenberg)
|
cannam@89
|
151
|
cannam@89
|
152 2006-03-29 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
153
|
cannam@89
|
154 * Applied lo_address_get_url() patch from Sze'kelyi Szabolcs
|
cannam@89
|
155 * Added lo_server_get_protocol() and lo_address_get_protocol()
|
cannam@89
|
156 * Added tests for lo_address_get_* tests to test tool
|
cannam@89
|
157
|
cannam@89
|
158 2006-01-26 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
159
|
cannam@89
|
160 * IPv6 is now disabled by default
|
cannam@89
|
161 * Released version 0.23
|
cannam@89
|
162
|
cannam@89
|
163 2005-12-29 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
164
|
cannam@89
|
165 * Fixed pthread resource leak, when stopping thread
|
cannam@89
|
166
|
cannam@89
|
167 2005-12-21 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
168
|
cannam@89
|
169 * Fixed bug where sockets weren't closed when replying to messages
|
cannam@89
|
170 * Split off resolve_address into seperate create_socket function
|
cannam@89
|
171 * Only creates new sockets when needed
|
cannam@89
|
172
|
cannam@89
|
173 2005-12-05 Nicholas Humfrey <njh@aelius.com>
|
cannam@89
|
174
|
cannam@89
|
175 * Added lo_send_from, lo_send_message_from and lo_send_bundle_from
|
cannam@89
|
176 * Merged guts of lo_send_message and lo_send_bundle into new static send_data()
|
cannam@89
|
177
|
cannam@89
|
178 2005-09-04 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
179
|
cannam@89
|
180 * Released 0.22
|
cannam@89
|
181
|
cannam@89
|
182 2005-09-02 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
183
|
cannam@89
|
184 * address.c, server.c: Added patch from Martin Habets that redoes
|
cannam@89
|
185 parts of previous patches...
|
cannam@89
|
186
|
cannam@89
|
187 2005-09-01 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
188
|
cannam@89
|
189 * address.c, server.c: Added patches from Jesse Chappell and Dave
|
cannam@89
|
190 Robillard to close various sockets when there no longer used.
|
cannam@89
|
191
|
cannam@89
|
192 2005-08-19 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
193
|
cannam@89
|
194 * address.c, testlo.c: Added patch from Dave Robillard to fix parsing
|
cannam@89
|
195 of IPV6 addresses in URLs.
|
cannam@89
|
196
|
cannam@89
|
197 2005-08-11 Martin Habets <mhabets@users.sourceforge.net>
|
cannam@89
|
198
|
cannam@89
|
199 * message.c: Fix LO_CHAR sending on big endian architectures.
|
cannam@89
|
200
|
cannam@89
|
201 2005-08-09 Martin Habets <mhabets@users.sourceforge.net>
|
cannam@89
|
202
|
cannam@89
|
203 * server.c: Add lo_server_del_method()
|
cannam@89
|
204 * server_thread.c: Add lo_server_thread_del_method()
|
cannam@89
|
205
|
cannam@89
|
206 2005-07-26 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
207
|
cannam@89
|
208 * bundle.c, server.c: Endianess fixed from Topher Cyll for bundle
|
cannam@89
|
209 timestamps.
|
cannam@89
|
210
|
cannam@89
|
211 # Bundle delivery timing is still not right, theres an arithmetic
|
cannam@89
|
212 # errorsomewhere, but I cant see it.
|
cannam@89
|
213
|
cannam@89
|
214 2005-06-05 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
215
|
cannam@89
|
216 * server.c: Patch from Lorenz Schori to optionally disable IPV6 support
|
cannam@89
|
217 with --disable-ipv6
|
cannam@89
|
218
|
cannam@89
|
219 2005-03-31 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
220
|
cannam@89
|
221 * server.c: Patch from Martin Habets that expands wildcarded patch to
|
cannam@89
|
222 the matching path where possible (eg. not when using the NULL
|
cannam@89
|
223 wildcard path).
|
cannam@89
|
224
|
cannam@89
|
225 2005-03-04 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
226
|
cannam@89
|
227 * server.c: try to fix the global struct thing that keeps track of
|
cannam@89
|
228 server sockets.
|
cannam@89
|
229
|
cannam@89
|
230 2005-02-03 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
231
|
cannam@89
|
232 * server.c: made UDP messages resolve back to thier originating server,
|
cannam@89
|
233 or something close to it.
|
cannam@89
|
234
|
cannam@89
|
235 2005-02-03 Taybin Rutkin <taybin@earthlink.net>
|
cannam@89
|
236
|
cannam@89
|
237 * server.c: commited resource leak fix from Jesse Chappell
|
cannam@89
|
238
|
cannam@89
|
239 2005-01-22 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
240
|
cannam@89
|
241 * address.c: fixed bug when determining protocol of URL with
|
cannam@89
|
242 unspecified sub-protocol. Reported by Pix.
|
cannam@89
|
243
|
cannam@89
|
244 2005-01-13 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
245
|
cannam@89
|
246 * bundle.c: patch from Dave Robillard that fixes bundles of more than 4
|
cannam@89
|
247 messages.
|
cannam@89
|
248
|
cannam@89
|
249 2005-01-13 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
250
|
cannam@89
|
251 * message.c: made the arguments to _add_string and _add_symbol const
|
cannam@89
|
252 char * for C++ compatibility.
|
cannam@89
|
253
|
cannam@89
|
254 2005-01-10 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
255
|
cannam@89
|
256 * message.c: added a source field that represents the source from which
|
cannam@89
|
257 a message was received. Useful in method handlers to determine which
|
cannam@89
|
258 client sent the message.
|
cannam@89
|
259
|
cannam@89
|
260 2004-12-21 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
261
|
cannam@89
|
262 * server.c: added patch from Walco van Loon and Pix that fixes a bug
|
cannam@89
|
263 in the hostname detection fallback code
|
cannam@89
|
264
|
cannam@89
|
265 2004-11-19 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
266
|
cannam@89
|
267 * send.c: added lo_send_timestamped()
|
cannam@89
|
268
|
cannam@89
|
269 2004-11-17 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
270
|
cannam@89
|
271 * server.c: added code to handle bundle reception
|
cannam@89
|
272 * bundle.c: code to build bundle objects
|
cannam@89
|
273 * timetag.c: code to manipulate and test timetags
|
cannam@89
|
274
|
cannam@89
|
275 2004-10-19 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
276
|
cannam@89
|
277 Release 0.13
|
cannam@89
|
278 * lo.h: removed reference to obsolete header lo_backcompat.h
|
cannam@89
|
279
|
cannam@89
|
280 2004-10-17 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
281
|
cannam@89
|
282 * lo_server.c: added code to allow servers to poll() on the server
|
cannam@89
|
283 socket, if available. From Sean Bolton.
|
cannam@89
|
284
|
cannam@89
|
285 2004-08-27 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
286
|
cannam@89
|
287 * lo_lowlevel.h, send.c: added OSX compatibility fixes from Taybin
|
cannam@89
|
288 Rutkin.
|
cannam@89
|
289
|
cannam@89
|
290 2004-08-19 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
291
|
cannam@89
|
292 Release 0.9
|
cannam@89
|
293 * testlo.c: added more URL tests
|
cannam@89
|
294
|
cannam@89
|
295 2004-08-19 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
296
|
cannam@89
|
297 * address.c: more bugfixes to URL handling
|
cannam@89
|
298
|
cannam@89
|
299 2004-08-02 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
300
|
cannam@89
|
301 * server.c, address.c: fixed bugs and ommisions in URL handling
|
cannam@89
|
302
|
cannam@89
|
303 2004-07-28 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
304
|
cannam@89
|
305 * send.c, server.c: added code to handle UNIX domain sockets.
|
cannam@89
|
306
|
cannam@89
|
307 2004-07-12 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
308
|
cannam@89
|
309 * server_thread.c: added a lo_server_thread_stop() function for
|
cannam@89
|
310 symmetry with lo_server_thread_start()
|
cannam@89
|
311
|
cannam@89
|
312 2004-06-07 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
313
|
cannam@89
|
314 * server.c: added a lo_server_recv_noblock() that will not wait for
|
cannam@89
|
315 a packet to be received
|
cannam@89
|
316
|
cannam@89
|
317 2004-03-26 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
318
|
cannam@89
|
319 * doc/, *.h: added doxygen documentation
|
cannam@89
|
320 * address.c: changed URL methods to accept/expect protocol
|
cannam@89
|
321 specifiers (eg. osc.udp://...)
|
cannam@89
|
322 * examples/*.c: added comments, slightly simplified
|
cannam@89
|
323
|
cannam@89
|
324 2004-03-21 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
325
|
cannam@89
|
326 * server.c: made binding to unspecified ports work
|
cannam@89
|
327
|
cannam@89
|
328 2004-03-21 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
329
|
cannam@89
|
330 * message.c: fixed coercion type bugs
|
cannam@89
|
331 * server.c: fixed endian conversion bug
|
cannam@89
|
332 * testlo.c: added lots of tests
|
cannam@89
|
333 * send.c: added implicit guard variable to end of send arguments
|
cannam@89
|
334
|
cannam@89
|
335 2004-03-20 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
336
|
cannam@89
|
337 * message.c, send.c: added support for the remaining types OSC
|
cannam@89
|
338
|
cannam@89
|
339 2004-03-15 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
340
|
cannam@89
|
341 * message.c: changed the definition of the string argument accessor
|
cannam@89
|
342 member (it was wrong before).
|
cannam@89
|
343
|
cannam@89
|
344 * target.c, *.[ch]: lo_target* is now called lo_address*, this
|
cannam@89
|
345 makes the api much clearer, %s/lo_target/lo_address/g, should
|
cannam@89
|
346 bring all source files up to date.
|
cannam@89
|
347
|
cannam@89
|
348 2004-02-29 Steve Harris <steve@plugin.org.uk>
|
cannam@89
|
349
|
cannam@89
|
350 * configure.in, Makefile.am: added auto* stuff
|