[Gd-chatter] r11692 - trunk/libraries/layer
hannes at gwydiondylan.org
hannes at gwydiondylan.org
Fri Feb 22 15:38:30 CET 2008
Author: hannes
Date: Fri Feb 22 15:38:29 2008
New Revision: 11692
Modified:
trunk/libraries/layer/socket.dylan
Log:
Job: 7299
send packets via the other end of the socket, not via
the output. (this prevents stack overflows for a bridge
group).
Modified: trunk/libraries/layer/socket.dylan
==============================================================================
--- trunk/libraries/layer/socket.dylan (original)
+++ trunk/libraries/layer/socket.dylan Fri Feb 22 15:38:29 2008
@@ -22,5 +22,5 @@
end;
define method send (node :: <flow-node-socket>, data)
- push-data(node.flow-node.the-output, data)
+ push-data(node.flow-node.the-input, data)
end;
More information about the chatter
mailing list