From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: From: erik quanstrom Date: Sun, 8 Jul 2007 10:08:17 -0400 To: 9fans@cse.psu.edu Subject: Re: [9fans] (no subject) In-Reply-To: <1ca4158d21ca6137b87927141730fa62@comcast.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 9365357e-ead2-11e9-9d60-3106f5b1d025 it appears that net! is hueristic. we use il here and this is the network table (from /sys/src/cmd/ndb/cs.c) that works for us. i'm not sure why Nilfast was eliminated from the current table, but the current ndb/cs doesn't work for us. i would suspect that tcp is timing out in an antisocial way and not allowing the next element of the network table to be processed. - erik /* > * net doesn't apply to (r)udp, icmp(v6), or telco (for speed) */ Network network[] = { [Nilfast] { "il", iplookup, iptrans, 0, 1 }, [Ntcp] { "tcp", iplookup, iptrans, 0, 0 }, [Nil] { "il", iplookup, iptrans, 0, 0 }, [Nudp] { "udp", iplookup, iptrans, 1, 0 }, [Nicmp] { "icmp", iplookup, iptrans, 1, 0 }, [Nicmpv6] { "icmpv6", iplookup, iptrans, 1, 0 }, [Nrudp] { "rudp", iplookup, iptrans, 1, 0 }, [Ntelco] { "telco", telcolookup, telcotrans, 1, 0 }, { 0 }, };