aboutsummaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Expand)Author
2010-05-08Incorporated ico's patch for threaded broadcasting.Martin Peach
2010-05-06Added tcpserver_broadcast_bytes() to speed up broadcast by resending the buff...Martin Peach
2010-05-06Make sure client is not already connected before spawning a thread to connect...Martin Peach
2010-05-05SO_REUSEADDR fixed cut-and-paste error for _WIN32 version.Martin Peach
2010-05-04SO_REUSEADDR was not being set on linux.Martin Peach
2010-05-01Fixed call to setsockopt( SO_REUSEADDR ), which was previously set false and ...Martin Peach
2010-03-29oops, undoing last commit; sorryIOhannes m zmölnig
2010-03-29replaced &s_... by gensym("...")IOhannes m zmölnig
2010-03-27Added output of IP address of disconnecting client at suggestion of Ivica Ico...Martin Peach
2010-03-26Sends all bytes in one block in a single thread, blocks further sends if one ...Martin Peach
2010-03-24Added a flag that is set if sender thread can't create. This stops any furthe...Martin Peach
2010-03-23Fixed NULL-pointer access bug in tcpserver_free() that caused trouble when cl...Martin Peach
2010-03-22Changed valid-stream output to be a signal output. Moved all post()s out of t...Martin Peach
2010-03-22check for NULL-pointer in destructorIOhannes m zmölnig
2010-03-16Output valid state only when it changes.Martin Peach
2010-03-16Added an outlet to udpreceive~ to indicate valid audio. Ouput address and por...Martin Peach
2010-03-11Updfated version number and help patch.Martin Peach
2010-03-11Added a "TAG!" identifier field to the tag so it can be verified as a tag. Th...Martin Peach
2010-03-09Moved client-specific parameters into a single t_tcpserver_socketreceiver str...Martin Peach
2010-03-09fixing bug #2966186IOhannes m zmölnig
2010-03-02Added a verbosity method to stop [tcpclient] printing in the main window ever...Martin Peach
2010-02-24Corrected some error messages, check for EINVAL after recvfrom(), to try to f...Martin Peach
2010-01-20Added SO_BROADCAST so you can actually broadcast with a .255 address...Martin Peach
2010-01-18use unix line endingsMartin Peach
2010-01-18Make the connection thread detached and don't refer to its struct directly, c...Martin Peach
2010-01-18Use NULL instead of 0 to reset thread pointer so maybe now MinGW can compile ...Martin Peach
2010-01-15Added include for ws2tcpip.h for socklen_t for _WIN32Martin Peach
2010-01-14Don't need float_cast.h anymore, using the flint union with ntohl/htonl instead.Martin Peach
2010-01-14Always send in network byte order for all architectures. UDP receiving socket...Martin Peach
2010-01-14Changed int optLen to socklen_t to avoid signedness warningMartin Peach
2010-01-13Fixed header files for _WIN32Martin Peach
2010-01-12Block size is settable by creation argument. Buffer size message is specified...Martin Peach
2010-01-11Added "unix" to the test for "UNIX".Martin Peach
2010-01-11help patch for udpsend~ and udpreceive~Martin Peach
2010-01-11Versions of netsend~ for udp.Martin Peach
2010-01-04Had the wrong #include for ioctl...Martin Peach
2010-01-02Changed MSW to _WIN32. Added tcpserver_send_buffer_avaliable_for_client()Martin Peach
2010-01-02Changed MSW to _WIN32Martin Peach
2010-01-02Changed MSW to _WIN32Martin Peach
2010-01-02Changed MSW to _WIN32Martin Peach
2010-01-02Changed MSW to _WIN32Martin Peach
2010-01-02Changed MSW to _WIN32Martin Peach
2009-11-29Sender threads are now created in the detached state so their resources will ...Martin Peach
2009-11-28Removed duplicate send, added threaded send for files, and also send whenever...Martin Peach
2009-11-12Using pthreads to send each message to each client in its own thread. This sh...Martin Peach
2009-04-08Oops, I had forgotten to add the default timeout of 1000us.Martin Peach
2009-04-08Added timeout message to set send timeout in microseconds, defaults to 1000.Martin Peach
2009-04-08Added [timeout( message to set microsecond timeout for send. This gives time ...Martin Peach
2009-03-09The 'sent' message now contains client number, bytes sent, socket number. Emp...Martin Peach
2009-03-04Changed send routine to send one byte at a time and output number of bytes se...Martin Peach