From: Dan A. <da...@gm...> - 2004-02-08 06:34:55
|
On Sat, Feb 07, 2004 at 07:23:19PM -0600, Richard Goodwin wrote: > Something appeared to be odd with the networking (at least the first few > times I tried). If I started with -d, I could ping the cL session, but if I > let the console autostart, I can't. > > AFter some more playing around, it seems like when I close the console > sometimes networking dies. (killing console with the X). Yep, there was a bug in the daemon, this should fix it: --- colinux-20040208/src/colinux/user/daemon.c 2004-02-08 01:20:19.000000000 +0200 +++ colinux-main/src/colinux/user/daemon.c 2004-02-08 08:32:12.000000000 +0200 @@ -556,7 +556,7 @@ message.message.type = CO_MESSAGE_TYPE_OTHER; message.message.size = sizeof(message.switchm); message.switchm.type = CO_SWITCH_MESSAGE_FREE_RULE; - message.switchm.destination = CO_MODULE_CONET0; + message.switchm.destination = module->id; co_message_switch_dup_message(&module->daemon->message_switch, &message.message); co_message_switch_free_rule(&module->daemon->message_switch, module->id); -- Dan Aloni da...@gm... |