Joe Van Dyk <joevandyk / gmail.com> writes: > Related question: > > If I need to send a message that's greater than 64KB back, is there > some standard Ruby way of doing so? (64KB seems to be the maximum > packet size) No. That's the maximum size of a UDP packet, and since UDP is a datagram protocol, there is no mechanism to say 'this packet is a continuation of that packet' at the UDP level. You'd have to do so at a higher level. YS.