From: Gary Wright Date: 2007-12-16T00:55:38+09:00 Subject: Re: Question about sockets/listeners On Dec 15, 2007, at 9:38 AM, James Croft wrote: > why is it stopping at 66? which limit am i > hitting? > You main thread may be existing before all the threads have been started. After creating all the threads you need to wait for them to finish by calling t.join on each one. Gary Wright