-
File Added: udp_tcl_dstip_doc.diff.
2007-12-12 07:21:49 UTC in Tcl UDP extension
-
File Added: udp_tcl_dstip_tests.diff.
2007-12-12 07:21:11 UTC in Tcl UDP extension
-
These patches add the ability to get the destination IP address of received packets. This is useful when a UDP socket has joined multiple multicast groups. By examining the destination IP address, an application can determine which multicast group this packet was sent to.
This patch has been tested on Linux and Windows. I think it will work on other Unixes, but I have not tested that yet.
2007-12-12 07:20:32 UTC in Tcl UDP extension
-
File Added: udp_tcl.1848365.diff.
2007-12-11 04:14:19 UTC in Tcl UDP extension
-
Tested with the current CVS HEAD.
The -mcastloop configuration option is documented as accepting a boolean value. Attempting to use non-integral values (e.g. true, false, yes, no) result in errors.
[todd@hobbes tcludp-head]$ cat udp_test.tcl
#!tclsh
lappend auto_path [pwd]
package require udp
set s [udp_open]
fconfigure $s -mcastloop true
[todd@hobbes tcludp-head]$ tclsh...
2007-12-11 04:12:17 UTC in Tcl UDP extension
-
Support for SO_REUSEADDR is currently in CVS HEAD. You should probably test it out since this feature is of interest to you.
2007-12-05 22:06:15 UTC in Tcl UDP extension
-
I have submitted patch number 1838487 to fix this.
2007-11-26 07:06:27 UTC in Tcl UDP extension
-
The attached patch fixes the crash when udp_seek is called with no arguments that was reported in bug number 1828920.
2007-11-26 07:05:19 UTC in Tcl UDP extension
-
I see what is causing the corruption. udpClose was looping over a list and calling UdpMulticast which was making changes on the same list. I am attaching a patch which prevents the memory corruption and puts checks in UdpMulticast to not try to set the result when the interp is NULL.
File Added: udp_tcl.c.diff.1838467.
2007-11-26 06:47:31 UTC in Tcl UDP extension
-
File Added: udp_tcl.c.diff.1838459.
2007-11-26 06:44:52 UTC in Tcl UDP extension