David Daney wrote:
> Casey Marshall wrote:
>> - channel.send(buf, new InetSocketAddress(remote, port));
>> + while (true)
>> + {
>> + try
>> + {
>> + channel.send(buf, new InetSocketAddress(remote, port));
>> + }
>> + catch (InterruptedIOException ioe)
>> + {
>> + // Ignore; interrupted system call.
>> + }
>> + }
>> }
>
> How does the while loop exit?
>
> Just wondering,
> At the `break' statement I forgot to insert :-)
