Thread: [Gambas-devel-svn] SF.net SVN: gambas:[1670] gambas/trunk/gb.net/src
Brought to you by:
gambas
From: <ga...@us...> - 2008-11-05 00:49:23
|
Revision: 1670 http://gambas.svn.sourceforge.net/gambas/?rev=1670&view=rev Author: gambas Date: 2008-11-05 00:49:17 +0000 (Wed, 05 Nov 2008) Log Message: ----------- [GB.NET] * BUG: The socket watch callbacks were incorrectly initialized! Modified Paths: -------------- gambas/trunk/gb.net/src/CSocket.c gambas/trunk/gb.net/src/CUdpSocket.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-02-14 23:02:52
|
Revision: 1870 http://gambas.svn.sourceforge.net/gambas/?rev=1870&view=rev Author: gambas Date: 2009-02-14 22:17:48 +0000 (Sat, 14 Feb 2009) Log Message: ----------- [GB.NET] * NEW: UdpSocket can use the local domain now. * NEW: UdpSocket.Bind now takes no argument. It uses the new Port property to bind to an internet address, or the new Path property to bind to a local path. * NEW: UdpSocket.TargetPath is a new property that must be set instead of TargetPort and TargetHost to define the local path address of the destination message. * NEW: UdpSocket.SourcePath is a new property that returns the path of the local socket that sent the message. Modified Paths: -------------- gambas/trunk/gb.net/src/CNet.c gambas/trunk/gb.net/src/CNet.h gambas/trunk/gb.net/src/CServerSocket.c gambas/trunk/gb.net/src/CServerSocket.h gambas/trunk/gb.net/src/CUdpSocket.c gambas/trunk/gb.net/src/CUdpSocket.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2009-12-06 00:33:36
|
Revision: 2458 http://gambas.svn.sourceforge.net/gambas/?rev=2458&view=rev Author: gambas Date: 2009-12-06 00:13:05 +0000 (Sun, 06 Dec 2009) Log Message: ----------- [GB.NET] * NEW: Port the changes from Gambas 2 and try to clean up the SerialPort source code. * BUG: Fix a breaking of aliasing rules in DnsClient. Modified Paths: -------------- gambas/trunk/gb.net/src/CDnsClient.c gambas/trunk/gb.net/src/CSerialPort.c gambas/trunk/gb.net/src/CSerialPort.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2010-01-02 19:44:35
|
Revision: 2593 http://gambas.svn.sourceforge.net/gambas/?rev=2593&view=rev Author: gambas Date: 2010-01-02 19:44:25 +0000 (Sat, 02 Jan 2010) Log Message: ----------- [GB.NET] * NEW: Socket are blocking by default, except Socket created by ServerSocket that are non-blocking by default. * BUG: Writing too much data on a non-blocking socket raises an error now. Modified Paths: -------------- gambas/trunk/gb.net/src/CServerSocket.c gambas/trunk/gb.net/src/CSocket.c gambas/trunk/gb.net/src/CSocket.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2010-01-03 13:08:09
|
Revision: 2594 http://gambas.svn.sourceforge.net/gambas/?rev=2594&view=rev Author: gambas Date: 2010-01-03 13:08:00 +0000 (Sun, 03 Jan 2010) Log Message: ----------- [GB.NET] * NEW: The Socket class got a Timeout property to define the socket sending and receiving timeout. The same property with UdpSocket and ServerSocket will follow. Modified Paths: -------------- gambas/trunk/gb.net/src/CSocket.c gambas/trunk/gb.net/src/CSocket.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2010-07-26 16:18:58
|
Revision: 3071 http://gambas.svn.sourceforge.net/gambas/?rev=3071&view=rev Author: gambas Date: 2010-07-26 16:18:51 +0000 (Mon, 26 Jul 2010) Log Message: ----------- [GB.NET] * NEW: ServerSocket.Interface is a new property to define the interface the socket will listen to. It uses a Linux-specific socket option, and I'm not sure that it really works. Modified Paths: -------------- gambas/trunk/gb.net/src/CNet.c gambas/trunk/gb.net/src/CServerSocket.c gambas/trunk/gb.net/src/CServerSocket.h gambas/trunk/gb.net/src/tools.c gambas/trunk/gb.net/src/tools.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2010-12-28 15:37:41
|
Revision: 3403 http://gambas.svn.sourceforge.net/gambas/?rev=3403&view=rev Author: gambas Date: 2010-12-28 15:37:34 +0000 (Tue, 28 Dec 2010) Log Message: ----------- [GB.NET] * NEW: Socket.Server is a new property that returns the ServerSocket that eventually created the Socket with its Accept() method. Modified Paths: -------------- gambas/trunk/gb.net/src/CServerSocket.c gambas/trunk/gb.net/src/CServerSocket.h gambas/trunk/gb.net/src/CSocket.c gambas/trunk/gb.net/src/CSocket.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2012-08-11 14:52:09
|
Revision: 5029 http://gambas.svn.sourceforge.net/gambas/?rev=5029&view=rev Author: gambas Date: 2012-08-11 14:52:01 +0000 (Sat, 11 Aug 2012) Log Message: ----------- [GB.NET] * NEW: SerialPort: Does the polling differently when detecting signal changes. * NEW: SerialPort.Open() method now takes an optional argument to define the polling delay in milliseconds. It is 50ms by default. Modified Paths: -------------- gambas/trunk/gb.net/src/CSerialPort.c gambas/trunk/gb.net/src/CSerialPort.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2013-06-01 13:37:40
|
Revision: 5689 http://sourceforge.net/p/gambas/code/5689 Author: gambas Date: 2013-06-01 13:37:38 +0000 (Sat, 01 Jun 2013) Log Message: ----------- [GB.NET] * BUG: Socket connection is not blocking anymore, like it was in Gambas 2. * BUG: Fix DnsClient defaut event declaration. Modified Paths: -------------- gambas/trunk/gb.net/src/CDnsClient.c gambas/trunk/gb.net/src/CSocket.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2013-06-03 19:13:25
|
Revision: 5696 http://sourceforge.net/p/gambas/code/5696 Author: gambas Date: 2013-06-03 19:13:22 +0000 (Mon, 03 Jun 2013) Log Message: ----------- [GB.NET] * BUG: SocketServer: Reinitialize the timeout each time the blocking mode changes. Modified Paths: -------------- gambas/trunk/gb.net/src/CServerSocket.c gambas/trunk/gb.net/src/CSocket.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-08-03 15:01:08
|
Revision: 6415 http://sourceforge.net/p/gambas/code/6415 Author: gambas Date: 2014-08-03 15:01:00 +0000 (Sun, 03 Aug 2014) Log Message: ----------- [GB.NET] * BUG: Fix a missing symbol lookup error. Modified Paths: -------------- gambas/trunk/gb.net/src/CDnsClient.c gambas/trunk/gb.net/src/CDnsClient.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2014-10-29 21:12:18
|
Revision: 6586 http://sourceforge.net/p/gambas/code/6586 Author: gambas Date: 2014-10-29 21:12:10 +0000 (Wed, 29 Oct 2014) Log Message: ----------- [GB.NET] * BUG: Fix a function declaration. Modified Paths: -------------- gambas/trunk/gb.net/src/CDnsClient.c gambas/trunk/gb.net/src/CDnsClient.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2016-01-16 15:58:59
|
Revision: 7579 http://sourceforge.net/p/gambas/code/7579 Author: gambas Date: 2016-01-16 15:58:57 +0000 (Sat, 16 Jan 2016) Log Message: ----------- [GB.NET] * BUG: SerialPort: Correctly release the polling timer when the serial port is closed. Modified Paths: -------------- gambas/trunk/gb.net/src/CSerialPort.c gambas/trunk/gb.net/src/CSerialPort.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |